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

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

Virus Cure.swf

This is the info page for
Flash #75301

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


Text
Lives

Danger

Safe

Level 1

Cancer

Cash

Restart

Upgrade

Upgrade

Next Level

Level 2

Lupus

e

The Cell
Shop

Next Level

Strength Boost

Increases Damage
$400

Max Level 3

Reflex Speed

Increases speed.
$400

Orb

Creates a Orb that
rotates around you.
$2000

Maxed Reflex Speed
Required

BlastWave

Knocks enemies back.
(Space Bar to use)
$2000

Maxed Strength Boost
Required

Freeze Ring

Ring of Froze that
stops enemies.
$400
(Space bar to use)

Max Level 3

Land Mine

Drops a Mine at your
location.
(Space Bar to use)
$2000

Maxed Freeze Ring
Required

Level 1

Level 2

Max Level

Level 1

Level 2

Max Level

Locked

Level 3

Gum Diease

Level 4

Lyme Diease

Level 5

Tuberculosis

Level 6

Thyroid Diease

Level 7

AIDS

Level 8

Pink Flu

Level 9

Virulence

Level 10

Swine Flu

Congratulations!!

A Day to Remember Award

Menu

Menu

Producer
Kyle Thullen
Co-Producer
Kyle Thullen
Designer
Kyle Thullen
Animations
Kyle Thullen
Flash Art Work
Kyle Thullen
Programming
Kyle Thullen
Sound and Music
Loopmaster
Flashkit.com
Game Concept
Kyle Thullen
Special Thanks to everyone that played
and support from my friends and family!

Danger

Safe

Virus

t

x

e

N

Welcome to the Virus Cure Tutorial. Here you will learn
how to move, use special moves, attack,  and more.
First we will start with movement. Get the feel of moving,
with the mouse then when you're ready, Click the Next
Button.

Now the thing in the middle of the screen is a Virus.
There will be a Virus on every level that you will need to kill.
Below the Virus, will be the Health of that Virus. To your
left is the Danger Meter; the higher this is, the closer you are
to dying from the Virus.

Now lets add some White Blood cells. The Virus stops
the White Blood cells from attacking it.
So this is where you come in, your job is to grab the
White Blood cells and carry them back to the Virus.
Try carrying a White Blood cell to the Virus.
You can carry more then one White Blood cell at a time.
Click Next when you're ready.

Now we are going to add an Enemy. It will try to help
the Virus grow and become more of a threat.
Your job is to stop the enemy from reaching the Virus by
running into it. It may take more then one hit to kill an
enemy, so keep hitting them until they die. Click Next
to begin, then when you are done Click Next again.

Now we are going to talk about Special moves and
Upgrades. As you move from level to level, you will
have the option to upgrade your cell, making it faster and
stronger; even giving it special abilities. The upgrade page
will explain everything in game.

Next are Recovery Cells. Recovery Cells will randomly appear
on any level, and you will be able to pick them up and hold
them until you use them. Click Next to create a Recovery Cell.

To use a Recovery Cell, first you have to carry it to the Virus. After
you put it in the Virus, it will be held in your inventory until
you use it. You can use the Recovery Cell by hitting the shift key when
you have one saved.  You can only use one Recovery Cell at a time.
So use it when you really need to. When you use a Recovery Cell,
your Danger Meter will go down. Click Next to Play.

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
stop();
Instance of Symbol 115 MovieClip in Frame 2
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 3
bigger = 1; speed = 1; Counter = 1; score = 0; Orb = 1; BlastWave = 0; Slow = 1; SlowText = 1; FAttack = 1; Mine = 1; lives = 5; _root.ball._xscale = 15; _root.ball._yscale = 15; _root.ball.enemyMoveSpeed = 2; _root.Orb_Move.gotoAndStop(1); _root.S_A.gotoAndStop(1); stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 128 MovieClip "Virus" in Frame 3
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood" in Frame 3
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 3
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 3
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 157 MovieClip "white1" in Frame 3
onClipEvent (load) { function reset() { this._x = 800; this._y = random(800) - 200; Enemy = 0; Stop = 0; } reset(); } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 8) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } }
Instance of Symbol 157 MovieClip "white2" in Frame 3
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; Stop = 0; } reset(); } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 8) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { _root.blood2.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } }
Instance of Symbol 160 MovieClip "Orb_Move" in Frame 3
onClipEvent (enterFrame) { if (_root.Orb == 2) { this._x = _root.ball._x; this._y = _root.ball._y; } }
Instance of Symbol 168 MovieClip "S_A" in Frame 3
onClipEvent (enterFrame) { if (Key.isDown(32)) { if (_root.FAttack == 2) { this._x = _root.ball._x; this._y = _root.ball._y; _root.S_A.gotoAndPlay(5); _root.FAttack = 0; } } } onClipEvent (enterFrame) { if (Key.isDown(32)) { if (_root.FAttack == 3) { this._x = _root.ball._x; this._y = _root.ball._y; _root.S_A.gotoAndPlay(30); _root.FAttack = 0; } } } onClipEvent (enterFrame) { if (Key.isDown(32)) { if (_root.FAttack == 4) { _root.S_A.gotoAndPlay(95); _root.FAttack = 0; this._x = _root.ball._x; this._y = _root.ball._y; } } }
Instance of Symbol 179 MovieClip "MineAttack" in Frame 3
/* no clip actions */
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 3
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 94 MovieClip "ball" in Frame 3
onClipEvent (enterFrame) { myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root._ymouse - this._y); _root.xChange = Math.round(_root._xmouse - this._x); _root.yMove = Math.round(_root.yChange / 45); _root.xMove = Math.round(_root.xChange / 45); this._y = this._y + _root.yMove; this._x = this._x + _root.xMove; } onClipEvent (load) { enemyMoveSpeed = 1; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root._xmouse < _x) { xS = xS - enemyMoveSpeed; } else if (_root._xmouse > _x) { xS = xS + enemyMoveSpeed; } if (_root._ymouse < _y) { yS = yS - enemyMoveSpeed; } else if (_root._ymouse > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.6; yS = yS * 0.6; } onClipEvent (enterFrame) { if (_root.BlastWave == 1) { if (Key.isDown(32)) { _root.AOE.gotoAndPlay(2); _root.AOE._x = this._x; _root.AOE._y = this._y; _root.BlastWave = 2; } } } onClipEvent (enterFrame) { if (_root.Mine == 2) { if (Key.isDown(32)) { if (!this.hitTest(_root.VirusBrain)) { _root.MineAttack._x = this._x; _root.MineAttack._y = this._y; _root.MineAttack.gotoAndPlay(2); _root.Mine = 3; } } } }
Instance of Symbol 183 MovieClip "Cash" in Frame 3
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 3
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 3
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 3
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 3
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 3
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 3
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (_root.lives == 3) { if (_root.danger == 100) { _root.danger = 0; _root.lives = _root.lives - 1; } } } onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("Menu"); } }
Instance of Symbol 205 MovieClip in Frame 3
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 213 MovieClip in Frame 3
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.score = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 3
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 4
bigger = 1; speed = 1; Counter = 1; Orb = 1; BlastWave = 0; Slow = 1; Mine = 1; _root.ball._xscale = 15; _root.ball._yscale = 15; _root.ball.enemyMoveSpeed = 2; _root.Orb_Move.gotoAndStop(1); _root.S_A.gotoAndStop(1);
Frame 7
stop();
Instance of Symbol 115 MovieClip in Frame 7
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 12
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 12
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 17
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 17
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 255 MovieClip "Virus" in Frame 17
onClipEvent (load) { this._xscale = 50; this._yscale = 50; } onClipEvent (enterFrame) { if (this._xscale <= 50) { this._xscale = 50; } } onClipEvent (enterFrame) { if (this._yscale <= 50) { this._yscale = 50; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(35); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood2" in Frame 17
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 17
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 261 MovieClip "white2" in Frame 17
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; Stop = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 261 MovieClip "white3" in Frame 17
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; Stop = 0; } reset(); } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 261 MovieClip "white1" in Frame 17
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; Stop = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 17
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 17
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 17
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 17
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 17
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 17
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 17
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 17
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 17
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 17
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 17
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 17
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 22
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 22
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 27
stop(); Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 304 MovieClip "UpgradeSize" in Frame 27
on (release) { if (_root.bigger < 4) { if (_root.score >= 400) { _root.ball._xscale = _root.ball._xscale + 1; _root.ball._yscale = _root.ball._yscale + 1; _root.score = _root.score - 400; _root.bigger = _root.bigger + 1; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { _root.bigger = 4; } } onClipEvent (enterFrame) { if (_root.bigger == 2) { this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.bigger == 3) { this.gotoAndStop(10); } } onClipEvent (enterFrame) { if (_root.bigger == 4) { this.gotoAndStop(15); } } onClipEvent (enterFrame) { if (_root.bigger == 1) { this.gotoAndStop(1); } } on (rollOver) { _root.Display.gotoAndStop(10); myColor = new Color("_root.UpgradeSize"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.UpgradeSize"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 310 MovieClip "Reflex" in Frame 27
on (release) { if (_root.speed < 4) { if (_root.score >= 400) { _root.ball.enemyMoveSpeed = _root.ball.enemyMoveSpeed + 0.5; _root.score = _root.score - 400; _root.speed = _root.speed + 1; } } } onClipEvent (enterFrame) { if (_root.speed >= 4) { _root.speed = 4; } } onClipEvent (enterFrame) { if (_root.speed == 2) { this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.speed == 3) { this.gotoAndStop(10); } } onClipEvent (enterFrame) { if (_root.speed == 4) { this.gotoAndStop(15); } } onClipEvent (enterFrame) { if (_root.speed == 1) { this.gotoAndStop(1); } } on (rollOver) { _root.Display.gotoAndStop(15); myColor = new Color("_root.Reflex"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.Reflex"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 317 MovieClip "Orb_Button" in Frame 27
on (release) { if (_root.speed == 4) { if (_root.Orb == 1) { if (_root.score >= 2000) { _root.Orb_Move.gotoAndPlay(2); _root.score = _root.score - 2000; _root.Orb = _root.Orb + 1; } } } } onClipEvent (enterFrame) { if (_root.Orb >= 2) { _root.Orb = 2; this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.speed == 4) { this.Locked.gotoAndStop(5); this.Gray.gotoAndStop(5); } } on (rollOver) { _root.Display.gotoAndStop(20); myColor = new Color("_root.Orb_Button"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.Orb_Button"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 320 MovieClip "Blast_Wave" in Frame 27
on (release) { if (_root.bigger == 4) { if (_root.BlastWave == 0) { if (_root.score >= 2000) { _root.score = _root.score - 2000; _root.BlastWave = _root.BlastWave + 1; } } } } onClipEvent (enterFrame) { if (_root.BlastWave == 1) { this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.bigger == 4) { this.Locked.gotoAndStop(5); this.Gray.gotoAndStop(5); } } on (rollOver) { _root.Display.gotoAndStop(25); myColor = new Color("_root.Blast_Wave"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.Blast_Wave"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 323 MovieClip "Slow_Aura" in Frame 27
on (release) { if (_root.Slow < 4) { if (_root.score >= 400) { _root.score = _root.score - 400; _root.Slow = _root.Slow + 1; _root.SlowText = _root.SlowText + 1; _root.FAttack = _root.FAttack + 1; } } } onClipEvent (enterFrame) { if (_root.Slow >= 4) { _root.Slow = 4; } } onClipEvent (enterFrame) { if (_root.SlowText == 2) { this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.SlowText == 3) { this.gotoAndStop(10); } } onClipEvent (enterFrame) { if (_root.SlowText == 4) { this.gotoAndStop(15); } } onClipEvent (enterFrame) { if (_root.SlowText == 1) { this.gotoAndStop(1); } } on (rollOver) { _root.Display.gotoAndStop(30); myColor = new Color("_root.Slow_Aura"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.Slow_Aura"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 326 MovieClip "Mine_Button" in Frame 27
on (release) { if (_root.Slow == 4) { if (_root.Mine == 1) { if (_root.score >= 2000) { _root.score = _root.score - 2000; _root.Mine = _root.Mine + 1; } } } } onClipEvent (enterFrame) { if (_root.Mine == 2) { this.gotoAndStop(5); } } onClipEvent (enterFrame) { if (_root.Slow == 4) { this.Locked.gotoAndStop(5); this.Gray.gotoAndStop(5); } } on (rollOver) { _root.Display.gotoAndStop(35); myColor = new Color("_root.Mine_Button"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.Mine_Button"); myColor.setTint(255, 225, 0, 0); }
Instance of Symbol 115 MovieClip in Frame 27
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 32
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 336 MovieClip "Virus" in Frame 32
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood" in Frame 32
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 32
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 32
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 32
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 341 MovieClip "white2" in Frame 32
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 341 MovieClip "white1" in Frame 32
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger == 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 341 MovieClip "white3" in Frame 32
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 341 MovieClip "white4" in Frame 32
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 32
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 32
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 32
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 32
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 32
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 32
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 32
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 32
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 32
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 32
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 32
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 32
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 32
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 37
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 37
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 42
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 42
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 42
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 42
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 42
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 137 MovieClip "blood5" in Frame 42
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 352 MovieClip "Virus" in Frame 42
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(15); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 354 MovieClip "white1" in Frame 42
onClipEvent (load) { function reset() { this._x = 600; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 354 MovieClip "white2" in Frame 42
onClipEvent (load) { function reset() { this._x = 600; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 354 MovieClip "white4" in Frame 42
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 354 MovieClip "white3" in Frame 42
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 354 MovieClip "white5" in Frame 42
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 42
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 42
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 42
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 42
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 42
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 42
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 42
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 42
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 42
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 42
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 42
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 42
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 42
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 47
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 47
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 52
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 364 MovieClip "Virus" in Frame 52
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood5" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 137 MovieClip "blood6" in Frame 52
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white6)) { this._x = _root.white6._x; this._y = _root.white6._y; } }
Instance of Symbol 369 MovieClip "white1" in Frame 52
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 369 MovieClip "white2" in Frame 52
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 369 MovieClip "white3" in Frame 52
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 369 MovieClip "white4" in Frame 52
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 369 MovieClip "white5" in Frame 52
onClipEvent (load) { function reset() { this._x = 700; this._y = random(600) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 369 MovieClip "white6" in Frame 52
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.bloo6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood6.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 52
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 52
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 52
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 52
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 52
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 52
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 52
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 52
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 52
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 52
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 52
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 52
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 52
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 57
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 57
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 62
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 380 MovieClip "Virus" in Frame 62
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood5" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 137 MovieClip "blood6" in Frame 62
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white6)) { this._x = _root.white6._x; this._y = _root.white6._y; } }
Instance of Symbol 383 MovieClip "white1" in Frame 62
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 383 MovieClip "white2" in Frame 62
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 383 MovieClip "white3" in Frame 62
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 383 MovieClip "white4" in Frame 62
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 383 MovieClip "white5" in Frame 62
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = -150; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 383 MovieClip "white6" in Frame 62
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.1; yS = yS * 0.1; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood6.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 62
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 62
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 62
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 62
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOod" in Frame 62
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOod)) { _root.FOod._x = _root.ball._x; _root.FOod._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 62
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 62
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 62
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 62
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 67
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 67
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 72
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 137 MovieClip "blood5" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 137 MovieClip "blood6" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white6)) { this._x = _root.white6._x; this._y = _root.white6._y; } }
Instance of Symbol 391 MovieClip "Virus" in Frame 72
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood7" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white7)) { this._x = _root.white7._x; this._y = _root.white7._y; } }
Instance of Symbol 137 MovieClip "blood8" in Frame 72
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white8)) { this._x = _root.white8._x; this._y = _root.white8._y; } }
Instance of Symbol 394 MovieClip "white1" in Frame 72
onClipEvent (load) { function reset() { this._x = 750; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 4; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white2" in Frame 72
onClipEvent (load) { function reset() { this._x = 750; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 4; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white4" in Frame 72
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white6" in Frame 72
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood6.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white3" in Frame 72
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white5" in Frame 72
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = -150; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white7" in Frame 72
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood7.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 394 MovieClip "white8" in Frame 72
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = -150; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood8.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 72
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 72
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 72
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 72
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOod" in Frame 72
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOod)) { _root.FOod._x = _root.ball._x; _root.FOod._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 72
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 72
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 72
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 72
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 77
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 77
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 82
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 137 MovieClip "blood5" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 137 MovieClip "blood6" in Frame 82
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white6)) { this._x = _root.white6._x; this._y = _root.white6._y; } }
Instance of Symbol 410 MovieClip "Virus" in Frame 82
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 412 MovieClip "white1" in Frame 82
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 412 MovieClip "white2" in Frame 82
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 412 MovieClip "white3" in Frame 82
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 412 MovieClip "white4" in Frame 82
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 412 MovieClip "white5" in Frame 82
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 412 MovieClip "white6" in Frame 82
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood6.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 82
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 82
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 82
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 82
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOod" in Frame 82
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOod)) { _root.FOod._x = _root.ball._x; _root.FOod._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 82
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 82
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 82
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 82
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 87
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 87
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 92
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 419 MovieClip "Virus" in Frame 92
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood" in Frame 92
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 92
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 92
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 92
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 137 MovieClip "blood5" in Frame 92
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 421 MovieClip "white1" in Frame 92
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 3; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 421 MovieClip "white2" in Frame 92
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 3; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 421 MovieClip "white3" in Frame 92
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 3; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } }
Instance of Symbol 421 MovieClip "white4" in Frame 92
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 3; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 3; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 421 MovieClip "white5" in Frame 92
onClipEvent (load) { function reset() { this._x = random(800) - 100; this._y = 650; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 3; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 5; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 92
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 92
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 92
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 92
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOod" in Frame 92
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOod)) { _root.FOod._x = _root.ball._x; _root.FOod._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 92
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 92
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 92
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 92
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 97
stopAllSounds(); stop();
Instance of Symbol 115 MovieClip in Frame 97
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 102
stop(); health = 100; danger = 0; Color.prototype.setTint = function (r, g, b, amount) { var _local2 = new Object(); _local2.ra = (_local2.ga = (_local2.ba = 100 - amount)); var _local3 = amount / 100; _local2.rb = r * _local3; _local2.gb = g * _local3; _local2.bb = b * _local3; this.setTransform(_local2); };
Instance of Symbol 137 MovieClip "blood" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 137 MovieClip "blood2" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white2)) { this._x = _root.white2._x; this._y = _root.white2._y; } }
Instance of Symbol 137 MovieClip "blood3" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white3)) { this._x = _root.white3._x; this._y = _root.white3._y; } }
Instance of Symbol 137 MovieClip "blood4" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white4)) { this._x = _root.white4._x; this._y = _root.white4._y; } }
Instance of Symbol 137 MovieClip "blood5" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white5)) { this._x = _root.white5._x; this._y = _root.white5._y; } }
Instance of Symbol 433 MovieClip "Virus" in Frame 102
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } } onClipEvent (enterFrame) { if (_root.health <= 0) { this.gotoAndStop(40); _root.VirusBrain.gotoAndStop(5); } }
Instance of Symbol 137 MovieClip "blood6" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white6)) { this._x = _root.white6._x; this._y = _root.white6._y; } }
Instance of Symbol 137 MovieClip "blood7" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white7)) { this._x = _root.white7._x; this._y = _root.white7._y; } }
Instance of Symbol 137 MovieClip "blood8" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white8)) { this._x = _root.white8._x; this._y = _root.white8._y; } }
Instance of Symbol 137 MovieClip "blood9" in Frame 102
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white8)) { this._x = _root.white8._x; this._y = _root.white8._y; } }
Instance of Symbol 435 MovieClip "white1" in Frame 102
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 5; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white2" in Frame 102
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 5; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white2"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood2.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood2.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white3" in Frame 102
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white3"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood3.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood3.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white4" in Frame 102
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white4"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood4.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood4.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white5" in Frame 102
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white5"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood5.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood5.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white6" in Frame 102
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood6.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood6.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white9" in Frame 102
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 5; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white6"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood9.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood9.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white7" in Frame 102
onClipEvent (load) { function reset() { this._x = -100; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 4; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white7"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white7"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood7.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 4; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood7.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 435 MovieClip "white8" in Frame 102
onClipEvent (load) { function reset() { this._x = 700; this._y = random(800) - 400; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 5; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.SoundBox.gotoAndPlay(15); _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { if (!_root.S_A.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { _root.SoundBox.gotoAndPlay(5); if (_root.Orb_Move._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.Orb_Move._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.Orb_Move._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.AOE)) { _root.SoundBox.gotoAndPlay(5); if (_root.AOE._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.AOE._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.AOE._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.AOE._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white8"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white8"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (this.hitTest(_root.Orb_Move)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 11) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 24) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 2) { if (Enemy == 25) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 10) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 22) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 3) { if (Enemy == 2) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 17) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 3) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (_root.bigger >= 4) { if (Enemy == 8) { reset(); Enemy = 0; _root.blood8.gotoAndPlay(2); _root.score = _root.score + 10; } } } onClipEvent (enterFrame) { if (this.hitTest(_root.S_A)) { Stop = 1; } else { Stop = 0; } } onClipEvent (enterFrame) { if (Stop == 1) { enemyMoveSpeed = 0; } } onClipEvent (enterFrame) { if (Stop == 0) { enemyMoveSpeed = 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.MineAttack)) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); _root.blood8.gotoAndPlay(2); reset(); _root.score = _root.score + 10; } } }
Instance of Symbol 115 MovieClip in Frame 102
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 102
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; }
Instance of Symbol 183 MovieClip "Cash" in Frame 102
onClipEvent (load) { GetCash = 0; } onClipEvent (enterFrame) { if (GetCash == 0) { if (_root.BG.hitTest(_root.ball)) { Cash = Math.round(Math.random() * 500); } } } onClipEvent (enterFrame) { if (Cash == 25) { Cash = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndStop(1); GetCash = 3; } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Cash)) { _root.Cash._x = _root.ball._x; _root.Cash._y = _root.ball._y; GetCash = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { _root.Cash.gotoAndStop(2); _root.SmokeRing.gotoAndPlay(2); GetCash = 1; _root.score = _root.score + 50; _root.SoundBox.gotoAndPlay(19); } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 102
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 188 MovieClip "Food" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Food)) { _root.Food._x = _root.ball._x; _root.Food._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FooD" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FooD)) { _root.FooD._x = _root.ball._x; _root.FooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOOD" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOOD)) { _root.FOOD._x = _root.ball._x; _root.FOOD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fOOd" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fOOd)) { _root.fOOd._x = _root.ball._x; _root.fOOd._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "fooD" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.fooD)) { _root.fooD._x = _root.ball._x; _root.fooD._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 188 MovieClip "FOod" in Frame 102
onClipEvent (load) { function reset() { this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(1); } reset(); } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.FOod)) { _root.FOod._x = _root.ball._x; _root.FOod._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); _root.score = _root.score + 5; } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 102
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 1000); } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 12) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 102
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } } onClipEvent (enterFrame) { if (this._yscale == 100) { stopAllSounds(); _root.lives = _root.lives - 1; _root.gotoAndStop("Fail"); } }
Instance of Symbol 205 MovieClip in Frame 102
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 102
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Frame 107
stopAllSounds(); stop(); _root.Orb_Move.gotoAndStop(1); _root.S_A.gotoAndStop(1);
Instance of Symbol 446 MovieClip in Frame 107
on (release) { _root.gotoAndStop("Menu"); }
Instance of Symbol 115 MovieClip in Frame 107
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Instance of Symbol 217 MovieClip in Frame 117
on (release) { stopAllSounds(); _root.gotoAndStop("Menu"); }
Instance of Symbol 115 MovieClip in Frame 117
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Frame 472
stop();
Frame 492
stop(); health = 100; danger = 0;
Instance of Symbol 128 MovieClip "Virus" in Frame 492
onClipEvent (enterFrame) { if (this._xscale <= 100) { this._xscale = 100; } } onClipEvent (enterFrame) { if (this._yscale <= 100) { this._yscale = 100; } }
Instance of Symbol 137 MovieClip "blood" in Frame 492
onClipEvent (enterFrame) { if (_root.BG.hitTest(_root.white1)) { this._x = _root.white1._x; this._y = _root.white1._y; } }
Instance of Symbol 157 MovieClip "white1" in Frame 492
onClipEvent (load) { function reset() { this._x = 800; this._y = random(800) - 200; Enemy = 0; } } onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); this.gotoAndStop(25); } onClipEvent (enterFrame) { if (_root.Virus._x < _x) { xS = xS - enemyMoveSpeed; } else if (_root.Virus._x > _x) { xS = xS + enemyMoveSpeed; } if (_root.Virus._y < _y) { yS = yS - enemyMoveSpeed; } else if (_root.Virus._y > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.3; yS = yS * 0.3; } onClipEvent (enterFrame) { if (this.hitTest(_root.Virus._x, _root.Virus._y)) { reset(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.SoundBox.gotoAndPlay(5); if (_root.ball._x < _x) { xS = xS + (enemyMoveSpeed + 15); } else if (_root.ball._x > _x) { xS = xS - (enemyMoveSpeed + 15); } if (_root.ball._y < _y) { yS = yS + (enemyMoveSpeed + 15); } else if (_root.ball._y > _y) { yS = yS - (enemyMoveSpeed + 15); } } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 70); } else if (!this.hitTest(_root.ball)) { myColor = new Color("_root.white1"); myColor.setTint(255, 225, 0, 0); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { Enemy = Math.round(Math.random() * 25); } } onClipEvent (enterFrame) { if (Enemy == 12) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 20) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 23) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 5) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 14) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 8) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } } onClipEvent (enterFrame) { if (Enemy == 17) { _root.blood.gotoAndPlay(2); reset(); Enemy = 0; _root.score = _root.score + 10; } }
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 492
onClipEvent (enterFrame) { this._x = _root.Virus._x; this._y = _root.Virus._y; } onClipEvent (enterFrame) { if (this.hitTest(_root.white1)) { _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; } } onClipEvent (enterFrame) { if (this.hitTest(_root.white2)) { _root.Virus._xscale = _root.Virus._xscale + 5; _root.Virus._yscale = _root.Virus._yscale + 5; _root.danger = _root.danger + 2; } }
Instance of Symbol 94 MovieClip "ball" in Frame 492
onClipEvent (load) { enemyMoveSpeed = 2; xS = (yS = 0); } onClipEvent (enterFrame) { if (_root._xmouse < _x) { xS = xS - enemyMoveSpeed; } else if (_root._xmouse > _x) { xS = xS + enemyMoveSpeed; } if (_root._ymouse < _y) { yS = yS - enemyMoveSpeed; } else if (_root._ymouse > _y) { yS = yS + enemyMoveSpeed; } _x = (_x + xS); _y = (_y + yS); xS = xS * 0.6; yS = yS * 0.6; } onClipEvent (enterFrame) { if (_root.BlastWave == 1) { if (Key.isDown(32)) { _root.AOE.gotoAndPlay(2); _root.AOE._x = this._x; _root.AOE._y = this._y; _root.BlastWave = 2; } } } onClipEvent (enterFrame) { if (_root.Mine == 2) { if (Key.isDown(32)) { _root.MineAttack._x = this._x; _root.MineAttack._y = this._y; _root.MineAttack.gotoAndPlay(2); _root.Mine = 3; } } }
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 492
onClipEvent (enterFrame) { this._x = _root.VirusBrain._x; this._y = _root.VirusBrain._y; }
Instance of Symbol 453 MovieClip "Tur_1" in Frame 492
onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Tur_1)) { _root.Tur_1._x = _root.ball._x; _root.Tur_1._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); } }
Instance of Symbol 453 MovieClip "Tur_3" in Frame 492
onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Tur_3)) { _root.Tur_3._x = _root.ball._x; _root.Tur_3._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); } }
Instance of Symbol 453 MovieClip "Tur_2" in Frame 492
onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.Tur_2)) { _root.Tur_2._x = _root.ball._x; _root.Tur_2._y = _root.ball._y; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndPlay(35); _root.health = _root.health - 3; _root.SmokeRing.gotoAndPlay(2); } }
Instance of Symbol 191 MovieClip "HealPill" in Frame 492
onClipEvent (load) { GetHeal = 0; } onClipEvent (enterFrame) { if (_root.N_Button.Story == 7) { if (GetHeal == 0) { if (_root.BG.hitTest(_root.ball)) { Heal = Math.round(Math.random() * 5); trace((Heal = Math.round(Math.random() * 5))); } } } } onClipEvent (enterFrame) { if (_root.ball.hitTest(_root.HealPill)) { _root.HealPill._x = _root.ball._x; _root.HealPill._y = _root.ball._y; GetHeal = 3; } } onClipEvent (enterFrame) { if (this.hitTest(_root.VirusBrain)) { this.gotoAndStop(45); _root.HealAction.gotoAndPlay(2); _root.SmokeRing.gotoAndPlay(2); GetHeal = 1; } } onClipEvent (enterFrame) { if (Heal == 5) { Heal = 0; this._x = random(300) + 100; this._y = random(300) + 100; this.gotoAndPlay(2); GetHeal = 3; } }
Instance of Symbol 198 MovieClip in Frame 492
onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger >= 100) { _root.danger = 100; } } onClipEvent (enterFrame) { this._yscale = _root.danger; if (_root.danger <= 0) { _root.danger = 0; } }
Instance of Symbol 205 MovieClip in Frame 492
onClipEvent (enterFrame) { this._xscale = _root.health; if (_root.health <= 0) { _root.health = 0; } }
Instance of Symbol 221 MovieClip "HealAction" in Frame 492
onClipEvent (enterFrame) { if (_root.HealPill.GetHeal == 1) { if (_root.danger >= 10) { if (Key.isDown(16)) { _root.SoundBox.gotoAndPlay(10); _root.danger = _root.danger - 10; this.gotoAndStop(1); _root.HealPill.GetHeal = 0; } } } }
Instance of Symbol 463 MovieClip "N_Button" in Frame 492
onClipEvent (load) { Story = 0; } on (release) { if (Story == 0) { _root.Guide.gotoAndStop(5); Story = Story + 1; } else if (Story == 1) { _root.Guide.gotoAndStop(10); _root.Tur_1.gotoAndPlay(2); _root.Tur_2.gotoAndPlay(2); _root.Tur_3.gotoAndPlay(2); Story = Story + 1; } else if (Story == 2) { _root.Guide.gotoAndStop(15); Story = Story + 1; } else if (Story == 3) { _root.white1.gotoAndPlay(1); Story = Story + 1; } else if (Story == 4) { _root.white1.gotoAndStop(25); _root.Guide.gotoAndStop(20); _root.danger = 10; Story = Story + 1; } else if (Story == 5) { _root.Guide.gotoAndStop(25); Story = Story + 1; } else if (Story == 6) { _root.Guide.gotoAndStop(30); Story = Story + 1; } else if (Story == 7) { stopAllSounds(); _root.gotoAndStop("Menu"); } }
Instance of Symbol 115 MovieClip in Frame 492
onClipEvent (enterFrame) { Mouse.hide(); this.startDrag("true"); }
Symbol 3 MovieClip Frame 1
xMin = 0; xMax = 550; yMin = 0; yMax = 400; minSize = 10; maxSize = 50; easeFactor = 10; randomX = (Math.random() * (xMax - xMin)) + xMin; randomY = (Math.random() * (yMax - yMin)) + yMin; randomSize = (Math.random() * (maxSize - minSize)) + minSize;
Symbol 3 MovieClip Frame 3
distance = Math.sqrt(Math.pow(this._x - randomX, 2) + Math.pow(this._y - randomY, 2)); if (Math.abs(this._width - maxSize) > 1) { this._width = this._width + ((randomSize - this._width) / 2); this._height = this._height + ((randomSize - this._height) / 2); } if (distance > 1) { this._x = this._x + ((randomX - this._x) / easeFactor); this._y = this._y + ((randomY - this._y) / easeFactor); gotoAndPlay (2); } else { gotoAndPlay (1); }
Symbol 49 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 51 MovieClip Frame 40
stop();
Symbol 77 Button
on (release) { startMovie(); }
Symbol 78 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 97 Button
on (release) { stopAllSounds(); _root.gotoAndPlay("Level1"); }
Symbol 101 Button
on (release) { stopAllSounds(); _root.gotoAndStop("Tutorial"); }
Symbol 105 Button
on (release) { stopAllSounds(); _root.gotoAndPlay("Credits"); }
Symbol 109 MovieClip Frame 10
stop();
Symbol 112 MovieClip Frame 10
stop();
Symbol 128 MovieClip Frame 35
gotoAndPlay (1);
Symbol 128 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 137 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 30
_root.LevelComplete.gotoAndPlay(2); if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); }
Symbol 151 MovieClip Frame 31
stop();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 30
_root.gotoAndStop("Victory");
Symbol 157 MovieClip Frame 20
gotoAndPlay (1); _root.reset();
Symbol 157 MovieClip Frame 25
stop();
Symbol 160 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 40
gotoAndPlay (2);
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 5
play();
Symbol 168 MovieClip Frame 6
play();
Symbol 168 MovieClip Frame 7
play();
Symbol 168 MovieClip Frame 8
play();
Symbol 168 MovieClip Frame 9
play();
Symbol 168 MovieClip Frame 10
play();
Symbol 168 MovieClip Frame 11
play();
Symbol 168 MovieClip Frame 12
play();
Symbol 168 MovieClip Frame 13
play();
Symbol 168 MovieClip Frame 14
play();
Symbol 168 MovieClip Frame 15
play();
Symbol 168 MovieClip Frame 16
play();
Symbol 168 MovieClip Frame 17
play();
Symbol 168 MovieClip Frame 18
play();
Symbol 168 MovieClip Frame 19
play();
Symbol 168 MovieClip Frame 20
play();
Symbol 168 MovieClip Frame 21
play();
Symbol 168 MovieClip Frame 22
play();
Symbol 168 MovieClip Frame 23
play();
Symbol 168 MovieClip Frame 24
play();
Symbol 168 MovieClip Frame 25
play();
Symbol 168 MovieClip Frame 26
stop(); if (_root.Slow == 2) { _root.FAttack = 2; } else if (_root.Slow == 3) { _root.FAttack = 3; } else if (_root.Slow == 4) { _root.FAttack = 4; }
Symbol 168 MovieClip Frame 30
play();
Symbol 168 MovieClip Frame 31
play();
Symbol 168 MovieClip Frame 32
play();
Symbol 168 MovieClip Frame 33
play();
Symbol 168 MovieClip Frame 34
play();
Symbol 168 MovieClip Frame 35
play();
Symbol 168 MovieClip Frame 36
play();
Symbol 168 MovieClip Frame 37
play();
Symbol 168 MovieClip Frame 38
play();
Symbol 168 MovieClip Frame 39
play();
Symbol 168 MovieClip Frame 40
play();
Symbol 168 MovieClip Frame 41
play();
Symbol 168 MovieClip Frame 42
play();
Symbol 168 MovieClip Frame 43
play();
Symbol 168 MovieClip Frame 44
play();
Symbol 168 MovieClip Frame 45
play();
Symbol 168 MovieClip Frame 46
play();
Symbol 168 MovieClip Frame 47
play();
Symbol 168 MovieClip Frame 48
play();
Symbol 168 MovieClip Frame 49
play();
Symbol 168 MovieClip Frame 50
play();
Symbol 168 MovieClip Frame 51
play();
Symbol 168 MovieClip Frame 52
play();
Symbol 168 MovieClip Frame 53
play();
Symbol 168 MovieClip Frame 54
play();
Symbol 168 MovieClip Frame 55
play();
Symbol 168 MovieClip Frame 56
play();
Symbol 168 MovieClip Frame 57
play();
Symbol 168 MovieClip Frame 58
play();
Symbol 168 MovieClip Frame 59
play();
Symbol 168 MovieClip Frame 60
play();
Symbol 168 MovieClip Frame 61
play();
Symbol 168 MovieClip Frame 62
play();
Symbol 168 MovieClip Frame 63
play();
Symbol 168 MovieClip Frame 64
play();
Symbol 168 MovieClip Frame 65
play();
Symbol 168 MovieClip Frame 66
play();
Symbol 168 MovieClip Frame 67
play();
Symbol 168 MovieClip Frame 68
play();
Symbol 168 MovieClip Frame 69
play();
Symbol 168 MovieClip Frame 70
play();
Symbol 168 MovieClip Frame 71
play();
Symbol 168 MovieClip Frame 72
play();
Symbol 168 MovieClip Frame 73
play();
Symbol 168 MovieClip Frame 74
play();
Symbol 168 MovieClip Frame 75
play();
Symbol 168 MovieClip Frame 76
play();
Symbol 168 MovieClip Frame 77
play();
Symbol 168 MovieClip Frame 78
play();
Symbol 168 MovieClip Frame 79
play();
Symbol 168 MovieClip Frame 80
play();
Symbol 168 MovieClip Frame 81
play();
Symbol 168 MovieClip Frame 82
play();
Symbol 168 MovieClip Frame 83
play();
Symbol 168 MovieClip Frame 84
play();
Symbol 168 MovieClip Frame 85
play();
Symbol 168 MovieClip Frame 86
stop(); if (_root.Slow == 2) { _root.FAttack = 2; } else if (_root.Slow == 3) { _root.FAttack = 3; } else if (_root.Slow == 4) { _root.FAttack = 4; }
Symbol 168 MovieClip Frame 95
play();
Symbol 168 MovieClip Frame 96
play();
Symbol 168 MovieClip Frame 97
play();
Symbol 168 MovieClip Frame 98
play();
Symbol 168 MovieClip Frame 99
play();
Symbol 168 MovieClip Frame 100
play();
Symbol 168 MovieClip Frame 101
play();
Symbol 168 MovieClip Frame 102
play();
Symbol 168 MovieClip Frame 103
play();
Symbol 168 MovieClip Frame 104
play();
Symbol 168 MovieClip Frame 105
play();
Symbol 168 MovieClip Frame 106
play();
Symbol 168 MovieClip Frame 107
play();
Symbol 168 MovieClip Frame 108
play();
Symbol 168 MovieClip Frame 109
play();
Symbol 168 MovieClip Frame 110
play();
Symbol 168 MovieClip Frame 111
play();
Symbol 168 MovieClip Frame 112
play();
Symbol 168 MovieClip Frame 113
play();
Symbol 168 MovieClip Frame 114
play();
Symbol 168 MovieClip Frame 115
play();
Symbol 168 MovieClip Frame 116
play();
Symbol 168 MovieClip Frame 117
play();
Symbol 168 MovieClip Frame 118
play();
Symbol 168 MovieClip Frame 119
play();
Symbol 168 MovieClip Frame 120
play();
Symbol 168 MovieClip Frame 121
play();
Symbol 168 MovieClip Frame 122
play();
Symbol 168 MovieClip Frame 123
play();
Symbol 168 MovieClip Frame 124
play();
Symbol 168 MovieClip Frame 125
play();
Symbol 168 MovieClip Frame 126
play();
Symbol 168 MovieClip Frame 127
play();
Symbol 168 MovieClip Frame 128
play();
Symbol 168 MovieClip Frame 129
play();
Symbol 168 MovieClip Frame 130
play();
Symbol 168 MovieClip Frame 131
play();
Symbol 168 MovieClip Frame 132
play();
Symbol 168 MovieClip Frame 133
play();
Symbol 168 MovieClip Frame 134
play();
Symbol 168 MovieClip Frame 135
play();
Symbol 168 MovieClip Frame 136
play();
Symbol 168 MovieClip Frame 137
play();
Symbol 168 MovieClip Frame 138
play();
Symbol 168 MovieClip Frame 139
play();
Symbol 168 MovieClip Frame 140
play();
Symbol 168 MovieClip Frame 141
play();
Symbol 168 MovieClip Frame 142
play();
Symbol 168 MovieClip Frame 143
play();
Symbol 168 MovieClip Frame 144
play();
Symbol 168 MovieClip Frame 145
play();
Symbol 168 MovieClip Frame 146
play();
Symbol 168 MovieClip Frame 147
play();
Symbol 168 MovieClip Frame 148
play();
Symbol 168 MovieClip Frame 149
play();
Symbol 168 MovieClip Frame 150
play();
Symbol 168 MovieClip Frame 151
play();
Symbol 168 MovieClip Frame 152
play();
Symbol 168 MovieClip Frame 153
play();
Symbol 168 MovieClip Frame 154
play();
Symbol 168 MovieClip Frame 155
play();
Symbol 168 MovieClip Frame 156
play();
Symbol 168 MovieClip Frame 157
play();
Symbol 168 MovieClip Frame 158
play();
Symbol 168 MovieClip Frame 159
play();
Symbol 168 MovieClip Frame 160
play();
Symbol 168 MovieClip Frame 161
play();
Symbol 168 MovieClip Frame 162
play();
Symbol 168 MovieClip Frame 163
play();
Symbol 168 MovieClip Frame 164
play();
Symbol 168 MovieClip Frame 165
play();
Symbol 168 MovieClip Frame 166
play();
Symbol 168 MovieClip Frame 167
play();
Symbol 168 MovieClip Frame 168
play();
Symbol 168 MovieClip Frame 169
play();
Symbol 168 MovieClip Frame 170
play();
Symbol 168 MovieClip Frame 171
play();
Symbol 168 MovieClip Frame 172
play();
Symbol 168 MovieClip Frame 173
play();
Symbol 168 MovieClip Frame 174
play();
Symbol 168 MovieClip Frame 175
play();
Symbol 168 MovieClip Frame 176
play();
Symbol 168 MovieClip Frame 177
play();
Symbol 168 MovieClip Frame 178
play();
Symbol 168 MovieClip Frame 179
play();
Symbol 168 MovieClip Frame 180
play();
Symbol 168 MovieClip Frame 181
play();
Symbol 168 MovieClip Frame 182
play();
Symbol 168 MovieClip Frame 183
play();
Symbol 168 MovieClip Frame 184
play();
Symbol 168 MovieClip Frame 185
play();
Symbol 168 MovieClip Frame 186
play();
Symbol 168 MovieClip Frame 187
play();
Symbol 168 MovieClip Frame 188
play();
Symbol 168 MovieClip Frame 189
play();
Symbol 168 MovieClip Frame 190
play();
Symbol 168 MovieClip Frame 191
play();
Symbol 168 MovieClip Frame 192
play();
Symbol 168 MovieClip Frame 193
play();
Symbol 168 MovieClip Frame 194
play();
Symbol 168 MovieClip Frame 195
play();
Symbol 168 MovieClip Frame 196
play();
Symbol 168 MovieClip Frame 197
play();
Symbol 168 MovieClip Frame 198
play();
Symbol 168 MovieClip Frame 199
play();
Symbol 168 MovieClip Frame 200
stop(); if (_root.Slow == 2) { _root.FAttack = 2; } else if (_root.Slow == 3) { _root.FAttack = 3; } else if (_root.Slow == 4) { _root.FAttack = 4; }
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 2
play();
Symbol 172 MovieClip Frame 3
play();
Symbol 172 MovieClip Frame 4
play();
Symbol 172 MovieClip Frame 5
play();
Symbol 172 MovieClip Frame 6
play();
Symbol 172 MovieClip Frame 7
play();
Symbol 172 MovieClip Frame 8
play();
Symbol 172 MovieClip Frame 9
play();
Symbol 172 MovieClip Frame 10
play();
Symbol 172 MovieClip Frame 11
play();
Symbol 172 MovieClip Frame 12
play();
Symbol 172 MovieClip Frame 13
play();
Symbol 172 MovieClip Frame 14
play();
Symbol 172 MovieClip Frame 15
_root.BlastWave = 1;
Symbol 179 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 2
play();
Symbol 179 MovieClip Frame 3
play();
Symbol 179 MovieClip Frame 4
play();
Symbol 179 MovieClip Frame 5
play();
Symbol 179 MovieClip Frame 6
play();
Symbol 179 MovieClip Frame 7
play();
Symbol 179 MovieClip Frame 8
play();
Symbol 179 MovieClip Frame 9
play();
Symbol 179 MovieClip Frame 10
play();
Symbol 179 MovieClip Frame 11
play();
Symbol 179 MovieClip Frame 12
play();
Symbol 179 MovieClip Frame 13
play();
Symbol 179 MovieClip Frame 14
play();
Symbol 179 MovieClip Frame 15
play();
Symbol 179 MovieClip Frame 16
play();
Symbol 179 MovieClip Frame 17
play();
Symbol 179 MovieClip Frame 18
play();
Symbol 179 MovieClip Frame 19
play();
Symbol 179 MovieClip Frame 20
stop();
Symbol 179 MovieClip Frame 21
play();
Symbol 179 MovieClip Frame 22
play();
Symbol 179 MovieClip Frame 23
play();
Symbol 179 MovieClip Frame 24
play();
Symbol 179 MovieClip Frame 25
play();
Symbol 179 MovieClip Frame 26
play();
Symbol 179 MovieClip Frame 27
play();
Symbol 179 MovieClip Frame 28
play();
Symbol 179 MovieClip Frame 29
play();
Symbol 179 MovieClip Frame 30
play();
Symbol 179 MovieClip Frame 31
play();
Symbol 179 MovieClip Frame 32
play();
Symbol 179 MovieClip Frame 33
play();
Symbol 179 MovieClip Frame 34
play();
Symbol 179 MovieClip Frame 35
play();
Symbol 179 MovieClip Frame 36
play();
Symbol 179 MovieClip Frame 37
play();
Symbol 179 MovieClip Frame 38
_root.Mine = 2;
Symbol 181 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 5
stop();
Symbol 183 MovieClip Frame 1
stop();
Symbol 183 MovieClip Frame 2
stop(); GetCash = 0;
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 20
stop();
Symbol 188 MovieClip Frame 34
stop();
Symbol 188 MovieClip Frame 70
reset();
Symbol 191 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 35
stop();
Symbol 191 MovieClip Frame 45
stop();
Symbol 221 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 20
stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 6
stop();
Symbol 228 MovieClip Frame 11
stop();
Symbol 228 MovieClip Frame 16
stop();
Symbol 228 MovieClip Frame 20
stop();
Symbol 233 Button
on (release) { stopAllSounds(); if (_root.lives >= 1) { if (_root.Counter == 2) { _root.gotoAndStop("Up2"); } else if (_root.Counter == 3) { _root.gotoAndStop("Up3"); } else if (_root.Counter == 4) { _root.gotoAndStop("Up4"); } else if (_root.Counter == 5) { _root.gotoAndStop("Up5"); } else if (_root.Counter == 6) { _root.gotoAndStop("Up6"); } else if (_root.Counter == 7) { _root.gotoAndStop("Up7"); } else if (_root.Counter == 8) { _root.gotoAndStop("Up8"); } else if (_root.Counter == 9) { _root.gotoAndStop("Up9"); } else if (_root.Counter == 10) { _root.gotoAndStop("Up10"); } } else if (_root.lives == 0) { _root.gotoAndStop("Level1"); } }
Symbol 235 MovieClip Frame 30
stop();
Symbol 240 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 2; }
Symbol 243 MovieClip Frame 15
stop();
Symbol 244 Button
on (release) { _root.gotoAndStop("Level2"); _root.Counter = 2; }
Symbol 246 MovieClip Frame 30
stop();
Symbol 255 MovieClip Frame 30
gotoAndPlay (1);
Symbol 255 MovieClip Frame 35
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 258 MovieClip Frame 1
stop();
Symbol 258 MovieClip Frame 30
_root.gotoAndStop("Victory2");
Symbol 261 MovieClip Frame 10
gotoAndPlay (1);
Symbol 267 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 3; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 268 Button
on (release) { _root.gotoAndStop("Level3"); _root.Counter = 3; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 273 Button
on (release) { stopAllSounds(); if (_root.Counter == 2) { _root.gotoAndStop("Up2"); } else if (_root.Counter == 3) { _root.gotoAndStop("Up3"); } else if (_root.Counter == 4) { _root.gotoAndStop("Up4"); } else if (_root.Counter == 5) { _root.gotoAndStop("Up5"); } else if (_root.Counter == 6) { _root.gotoAndStop("Up6"); } else if (_root.Counter == 7) { _root.gotoAndStop("Up7"); } else if (_root.Counter == 8) { _root.gotoAndStop("Up8"); } else if (_root.Counter == 9) { _root.gotoAndStop("Up9"); } else if (_root.Counter == 10) { _root.gotoAndStop("Up10"); } } on (rollOver) { _root.Display.gotoAndStop(5); myColor = new Color("_root.NextLevel"); myColor.setTint(255, 225, 0, 50); } on (rollOut) { _root.Display.gotoAndStop(1); myColor = new Color("_root.NextLevel"); myColor.setTint(255, 225, 0, 0); } on (release) { if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 296 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 5
stop();
Symbol 296 MovieClip Frame 10
stop();
Symbol 296 MovieClip Frame 15
stop();
Symbol 296 MovieClip Frame 20
stop();
Symbol 296 MovieClip Frame 25
stop();
Symbol 296 MovieClip Frame 30
stop();
Symbol 296 MovieClip Frame 35
stop();
Symbol 304 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 5
stop();
Symbol 304 MovieClip Frame 10
stop();
Symbol 304 MovieClip Frame 15
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 5
stop();
Symbol 310 MovieClip Frame 10
stop();
Symbol 310 MovieClip Frame 15
stop();
Symbol 315 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 5
stop();
Symbol 316 MovieClip Frame 1
stop();
Symbol 316 MovieClip Frame 5
stop();
Symbol 317 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 5
stop();
Symbol 320 MovieClip Frame 1
stop();
Symbol 320 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 1
stop();
Symbol 323 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 10
stop();
Symbol 323 MovieClip Frame 15
stop();
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 5
stop();
Symbol 336 MovieClip Frame 35
gotoAndPlay (1);
Symbol 336 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 339 MovieClip Frame 1
stop();
Symbol 339 MovieClip Frame 30
_root.gotoAndStop("Victory3");
Symbol 345 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 4; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 346 Button
on (release) { _root.gotoAndStop("Level4"); _root.Counter = 4; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 349 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 30
_root.gotoAndStop("Victory4");
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 15
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 358 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 5; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 359 Button
on (release) { _root.gotoAndStop("Level5"); _root.Counter = 5; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 364 MovieClip Frame 30
gotoAndPlay (2);
Symbol 364 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 367 MovieClip Frame 1
stop();
Symbol 367 MovieClip Frame 30
_root.gotoAndStop("Victory5");
Symbol 373 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 6; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 374 Button
on (release) { _root.gotoAndStop("Level6"); _root.Counter = 6; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 377 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 30
_root.gotoAndStop("Victory6");
Symbol 380 MovieClip Frame 30
gotoAndPlay (2);
Symbol 380 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 383 MovieClip Frame 10
gotoAndPlay (1);
Symbol 387 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 7; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 388 Button
on (release) { _root.gotoAndStop("Level7"); _root.Counter = 7; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 391 MovieClip Frame 30
gotoAndPlay (1);
Symbol 391 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 394 MovieClip Frame 20
gotoAndPlay (1);
Symbol 397 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 30
stop(); _root.gotoAndStop("Victory7");
Symbol 401 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 8; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 402 Button
on (release) { _root.gotoAndStop("Level8"); _root.Counter = 8; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 405 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 30
_root.gotoAndStop("Victory8");
Symbol 410 MovieClip Frame 30
gotoAndStop (1);
Symbol 410 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 415 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 9; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 416 Button
on (release) { _root.gotoAndStop("Level9"); _root.Counter = 9; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 419 MovieClip Frame 30
gotoAndPlay (1);
Symbol 419 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 30
_root.gotoAndStop("Victory9");
Symbol 427 Button
on (release) { _root.gotoAndStop("Upgrade"); _root.Counter = 10; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 428 Button
on (release) { _root.gotoAndStop("Level10"); _root.Counter = 10; if (_root.Mine == 3) { _root.MineAttack.gotoAndPlay(21); } }
Symbol 430 MovieClip Frame 1
stop();
Symbol 430 MovieClip Frame 30
_root.gotoAndStop("GameVictory");
Symbol 433 MovieClip Frame 30
gotoAndPlay (1);
Symbol 433 MovieClip Frame 40
stop(); _root.BloodSplat.gotoAndPlay(2);
Symbol 453 MovieClip Frame 1
stop();
Symbol 453 MovieClip Frame 2
play();
Symbol 453 MovieClip Frame 20
stop();
Symbol 453 MovieClip Frame 35
stop();
Symbol 474 MovieClip Frame 1
stop();
Symbol 474 MovieClip Frame 5
stop();
Symbol 474 MovieClip Frame 10
stop();
Symbol 474 MovieClip Frame 15
stop();
Symbol 474 MovieClip Frame 20
stop();
Symbol 474 MovieClip Frame 25
stop();
Symbol 474 MovieClip Frame 30
stop();

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:Timeline
Symbol 4 GraphicUsed by:78
Symbol 5 GraphicUsed by:78
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:78
Symbol 8 GraphicUsed by:10
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:8 9Used by:78
Symbol 11 GraphicUsed by:78
Symbol 12 GraphicUsed by:78
Symbol 13 GraphicUsed by:78
Symbol 14 GraphicUsed by:21 51
Symbol 15 GraphicUsed by:21 51
Symbol 16 GraphicUsed by:21 51
Symbol 17 GraphicUsed by:21 51
Symbol 18 GraphicUsed by:21 51
Symbol 19 GraphicUsed by:21 51
Symbol 20 GraphicUsed by:21 51
Symbol 21 MovieClipUses:14 15 16 17 18 19 20Used by:78
Symbol 22 GraphicUsed by:78
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:78
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:46
Symbol 27 GraphicUsed by:31
Symbol 28 GraphicUsed by:31
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31 34
Symbol 31 MovieClipUses:27 28 30Used by:45
Symbol 32 GraphicUsed by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:32 33 30Used by:45
Symbol 35 GraphicUsed by:38
Symbol 36 GraphicUsed by:38 41
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:35 36 37Used by:42
Symbol 39 GraphicUsed by:41
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:39 36 40Used by:42
Symbol 42 MovieClipUses:38 41Used by:45
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:45
Symbol 45 MovieClipUses:31 34 42 44Used by:46
Symbol 46 MovieClipUses:26 45Used by:78
Symbol 47 GraphicUsed by:78
Symbol 48 GraphicUsed by:49
Symbol 49 ButtonUses:48Used by:78
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:14 15 16 17 18 19 20 50Used by:78
Symbol 52 GraphicUsed by:78
Symbol 53 GraphicUsed by:78
Symbol 54 GraphicUsed by:78
Symbol 55 GraphicUsed by:78
Symbol 56 GraphicUsed by:78
Symbol 57 GraphicUsed by:78
Symbol 58 GraphicUsed by:78
Symbol 59 GraphicUsed by:78
Symbol 60 GraphicUsed by:78
Symbol 61 GraphicUsed by:78
Symbol 62 GraphicUsed by:78
Symbol 63 GraphicUsed by:78
Symbol 64 ShapeTweeningUsed by:78
Symbol 65 GraphicUsed by:78
Symbol 66 ShapeTweeningUsed by:78
Symbol 67 ShapeTweeningUsed by:78
Symbol 68 GraphicUsed by:78
Symbol 69 GraphicUsed by:77
Symbol 70 GraphicUsed by:77
Symbol 71 GraphicUsed by:77
Symbol 72 GraphicUsed by:77
Symbol 73 GraphicUsed by:77
Symbol 74 GraphicUsed by:76
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:74 75Used by:77
Symbol 77 ButtonUses:69 70 71 72 73 76Used by:78
Symbol 78 MovieClipUses:4 5 7 10 11 12 13 21 22 24 46 47 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 77Used by:Timeline
Symbol 79 GraphicUsed by:Timeline
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:Timeline
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:474  Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:474  Timeline
Symbol 88 GraphicUsed by:97
Symbol 89 GraphicUsed by:97
Symbol 90 GraphicUsed by:94
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:93
Symbol 93 MovieClipUses:92Used by:94
Symbol 94 MovieClipUses:90 93Used by:97 101 105  Timeline
Symbol 95 GraphicUsed by:97
Symbol 96 SoundUsed by:97 101 105
Symbol 97 ButtonUses:88 89 94 95 96Used by:Timeline
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 ButtonUses:98 99 94 100 96Used by:Timeline
Symbol 102 GraphicUsed by:105
Symbol 103 GraphicUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 ButtonUses:102 103 94 104 96Used by:Timeline
Symbol 106 GraphicUsed by:109
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109 120
Symbol 109 MovieClipUses:106 108Used by:Timeline
Symbol 110 GraphicUsed by:112
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:110 111Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:Timeline
Symbol 116 GraphicUsed by:Timeline
Symbol 117 SoundUsed by:Timeline
Symbol 118 GraphicUsed by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119 108Used by:Timeline
Symbol 121 GraphicUsed by:128
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:128
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:128
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:121 123 125 126 127Used by:Timeline
Symbol 129 GraphicUsed by:137
Symbol 130 SoundUsed by:137
Symbol 131 GraphicUsed by:137
Symbol 132 GraphicUsed by:137
Symbol 133 GraphicUsed by:137
Symbol 134 GraphicUsed by:137
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:129 130 131 132 133 134 135 136Used by:Timeline
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:151
Symbol 140 GraphicUsed by:151
Symbol 141 SoundUsed by:151
Symbol 142 SoundUsed by:151
Symbol 143 SoundUsed by:151 186
Symbol 144 GraphicUsed by:151
Symbol 145 GraphicUsed by:151
Symbol 146 GraphicUsed by:151
Symbol 147 GraphicUsed by:151
Symbol 148 GraphicUsed by:151
Symbol 149 GraphicUsed by:151
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:139 140 141 142 143 144 145 146 147 148 149 150Used by:Timeline
Symbol 152 GraphicUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:152 153Used by:Timeline
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:157
Symbol 157 MovieClipUses:156Used by:Timeline
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:168
Symbol 163 SoundUsed by:168
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:168
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:168
Symbol 168 MovieClipUses:162 163 165 167Used by:Timeline
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:172
Symbol 171 SoundUsed by:172
Symbol 172 MovieClipUses:170 171Used by:Timeline
Symbol 173 GraphicUsed by:179
Symbol 174 GraphicUsed by:177 179
Symbol 175 GraphicUsed by:179 187
Symbol 176 GraphicUsed by:179
Symbol 177 MovieClipUses:174Used by:179
Symbol 178 SoundUsed by:179
Symbol 179 MovieClipUses:173 174 175 176 177 178Used by:Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:186
Symbol 186 MovieClipUses:185 143Used by:Timeline
Symbol 187 MovieClipUses:175Used by:188
Symbol 188 MovieClipUses:187Used by:Timeline
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:191
Symbol 191 MovieClipUses:190Used by:Timeline
Symbol 192 GraphicUsed by:Timeline
Symbol 193 FontUsed by:194 195 199 200 201 264 342 355 370 384 398 413 425 436
Symbol 194 TextUses:193Used by:Timeline
Symbol 195 EditableTextUses:193Used by:Timeline
Symbol 196 GraphicUsed by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 TextUses:193Used by:Timeline
Symbol 200 TextUses:193Used by:Timeline
Symbol 201 TextUses:193Used by:Timeline
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:Timeline
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:Timeline
Symbol 206 FontUsed by:207 212 265 343 356 371 385 399 414 426 437 455 456 457
Symbol 207 EditableTextUses:206Used by:Timeline
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:Timeline
Symbol 210 FontUsed by:211 232 238 239 241 276 277 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 300 302 303 307 308 309 314 442 443 445 448 459 460 461 462 465 467 469 470 471 472 473
Symbol 211 EditableTextUses:210Used by:Timeline
Symbol 212 EditableTextUses:206Used by:213
Symbol 213 MovieClipUses:212Used by:Timeline
Symbol 214 GraphicUsed by:217 273
Symbol 215 GraphicUsed by:216 233 240 244 267 268 273 345 346 358 359 373 374 387 388 401 402 415 416 427 428
Symbol 216 MovieClipUses:215Used by:217 233 240 244 267 268 273 296 304 310 316 317 320 323 326 345 346 358 359 373 374 387 388 401 402 415 416 427 428 446 463
Symbol 217 MovieClipUses:214 216Used by:219  Timeline
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:217 218Used by:221
Symbol 220 SoundUsed by:221
Symbol 221 MovieClipUses:219 220Used by:Timeline
Symbol 222 GraphicUsed by:228
Symbol 223 GraphicUsed by:228
Symbol 224 SoundUsed by:228
Symbol 225 SoundUsed by:228
Symbol 226 SoundUsed by:228
Symbol 227 SoundUsed by:228
Symbol 228 MovieClipUses:222 223 224 225 226 227Used by:Timeline
Symbol 229 SoundUsed by:Timeline
Symbol 230 SoundUsed by:Timeline
Symbol 231 GraphicUsed by:233
Symbol 232 TextUses:210Used by:233
Symbol 233 ButtonUses:231 232 216 215Used by:Timeline
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:Timeline
Symbol 236 GraphicUsed by:Timeline
Symbol 237 GraphicUsed by:240 244 267 268 345 346 358 359 373 374 387 388 401 402 415 416 427 428
Symbol 238 TextUses:210Used by:240 267 345 358 373 387 401 415 427
Symbol 239 TextUses:210Used by:240 267 345 358 373 387 401 415 427
Symbol 240 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 241 TextUses:210Used by:242 244 268 346 359 374 388 402 416 428
Symbol 242 MovieClipUses:241Used by:243
Symbol 243 MovieClipUses:242Used by:244 268 346 359 374 388 402 416 428
Symbol 244 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245Used by:Timeline
Symbol 247 GraphicUsed by:255
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:255
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:255
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:247 249 251 253 254Used by:Timeline
Symbol 256 GraphicUsed by:258
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:256 257Used by:Timeline
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:261
Symbol 261 MovieClipUses:260Used by:Timeline
Symbol 262 GraphicUsed by:Timeline
Symbol 263 GraphicUsed by:Timeline
Symbol 264 TextUses:193Used by:Timeline
Symbol 265 EditableTextUses:206Used by:Timeline
Symbol 266 SoundUsed by:Timeline
Symbol 267 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 268 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:Timeline
Symbol 271 FontUsed by:272
Symbol 272 TextUses:271Used by:273
Symbol 273 ButtonUses:214 216 272 215Used by:Timeline
Symbol 274 GraphicUsed by:Timeline
Symbol 275 GraphicUsed by:296 310 316 320 323 326
Symbol 276 TextUses:210Used by:296
Symbol 277 TextUses:210Used by:296
Symbol 278 SoundUsed by:296
Symbol 279 TextUses:210Used by:296
Symbol 280 TextUses:210Used by:296
Symbol 281 TextUses:210Used by:296
Symbol 282 TextUses:210Used by:296
Symbol 283 TextUses:210Used by:296
Symbol 284 TextUses:210Used by:296
Symbol 285 TextUses:210Used by:296
Symbol 286 TextUses:210Used by:296
Symbol 287 TextUses:210Used by:296
Symbol 288 TextUses:210Used by:296
Symbol 289 TextUses:210Used by:296
Symbol 290 TextUses:210Used by:296
Symbol 291 TextUses:210Used by:296
Symbol 292 TextUses:210Used by:296
Symbol 293 TextUses:210Used by:296
Symbol 294 TextUses:210Used by:296
Symbol 295 TextUses:210Used by:296
Symbol 296 MovieClipUses:275 216 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295Used by:Timeline
Symbol 297 GraphicUsed by:304
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:304
Symbol 300 TextUses:210Used by:304
Symbol 301 SoundUsed by:304 310 317 320 323 326
Symbol 302 TextUses:210Used by:304
Symbol 303 TextUses:210Used by:304 317 326
Symbol 304 MovieClipUses:297 216 299 300 301 302 303Used by:Timeline
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:310
Symbol 307 TextUses:210Used by:310 323
Symbol 308 TextUses:210Used by:310 323
Symbol 309 TextUses:210Used by:310 320 323
Symbol 310 MovieClipUses:275 216 306 307 301 308 309Used by:Timeline
Symbol 311 GraphicUsed by:317
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:317
Symbol 314 TextUses:210Used by:315
Symbol 315 MovieClipUses:314Used by:317 320 326
Symbol 316 MovieClipUses:275 216Used by:317 320 326
Symbol 317 MovieClipUses:311 216 313 315 316 303 301Used by:Timeline
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:320
Symbol 320 MovieClipUses:275 216 319 315 316 309 301Used by:Timeline
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:275 216 322 307 301 308 309Used by:Timeline
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:326
Symbol 326 MovieClipUses:275 216 325 315 316 303 301Used by:Timeline
Symbol 327 GraphicUsed by:Timeline
Symbol 328 SoundUsed by:Timeline
Symbol 329 GraphicUsed by:336
Symbol 330 GraphicUsed by:331
Symbol 331 ButtonUses:330Used by:336
Symbol 332 GraphicUsed by:333
Symbol 333 ButtonUses:332Used by:336
Symbol 334 GraphicUsed by:336
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:329 331 333 334 335Used by:Timeline
Symbol 337 GraphicUsed by:339
Symbol 338 GraphicUsed by:339 430
Symbol 339 MovieClipUses:337 338Used by:Timeline
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:Timeline
Symbol 342 TextUses:193Used by:Timeline
Symbol 343 EditableTextUses:206Used by:Timeline
Symbol 344 SoundUsed by:Timeline
Symbol 345 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 346 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 347 GraphicUsed by:349
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:347 348Used by:Timeline
Symbol 350 GraphicUsed by:352
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:350 351Used by:Timeline
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:Timeline
Symbol 355 TextUses:193Used by:Timeline
Symbol 356 EditableTextUses:206Used by:Timeline
Symbol 357 SoundUsed by:Timeline
Symbol 358 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 359 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 360 GraphicUsed by:364
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClipUses:361Used by:364
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:360 362 363Used by:Timeline
Symbol 365 GraphicUsed by:367
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:365 366Used by:Timeline
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:Timeline
Symbol 370 TextUses:193Used by:Timeline
Symbol 371 EditableTextUses:206Used by:Timeline
Symbol 372 SoundUsed by:Timeline
Symbol 373 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 374 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 375 GraphicUsed by:377
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:375 376Used by:Timeline
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:378Used by:380
Symbol 380 MovieClipUses:379Used by:Timeline
Symbol 381 GraphicUsed by:382
Symbol 382 MovieClipUses:381Used by:383
Symbol 383 MovieClipUses:382Used by:Timeline
Symbol 384 TextUses:193Used by:Timeline
Symbol 385 EditableTextUses:206Used by:Timeline
Symbol 386 SoundUsed by:Timeline
Symbol 387 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 388 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 389 GraphicUsed by:391
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:389 390Used by:Timeline
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:394
Symbol 394 MovieClipUses:393Used by:Timeline
Symbol 395 GraphicUsed by:397
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:395 396Used by:Timeline
Symbol 398 TextUses:193Used by:Timeline
Symbol 399 EditableTextUses:206Used by:Timeline
Symbol 400 SoundUsed by:Timeline
Symbol 401 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 402 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 403 GraphicUsed by:405
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:403 404Used by:Timeline
Symbol 406 GraphicUsed by:410
Symbol 407 GraphicUsed by:408
Symbol 408 MovieClipUses:407Used by:410
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClipUses:406 408 409Used by:Timeline
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:411Used by:Timeline
Symbol 413 TextUses:193Used by:Timeline
Symbol 414 EditableTextUses:206Used by:Timeline
Symbol 415 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 416 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 417 GraphicUsed by:419
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:417 418Used by:Timeline
Symbol 420 GraphicUsed by:421
Symbol 421 MovieClipUses:420Used by:Timeline
Symbol 422 GraphicUsed by:424
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:422 423Used by:Timeline
Symbol 425 TextUses:193Used by:Timeline
Symbol 426 EditableTextUses:206Used by:Timeline
Symbol 427 ButtonUses:237 238 216 239 215Used by:Timeline
Symbol 428 ButtonUses:237 216 243 215 241Used by:Timeline
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:429 338Used by:Timeline
Symbol 431 GraphicUsed by:433
Symbol 432 GraphicUsed by:433
Symbol 433 MovieClipUses:431 432Used by:Timeline
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434Used by:Timeline
Symbol 436 TextUses:193Used by:Timeline
Symbol 437 EditableTextUses:206Used by:Timeline
Symbol 438 BitmapUsed by:439
Symbol 439 GraphicUses:438Used by:440 441
Symbol 440 MovieClipUses:439Used by:Timeline
Symbol 441 MovieClipUses:439Used by:Timeline
Symbol 442 TextUses:210Used by:Timeline
Symbol 443 TextUses:210Used by:Timeline
Symbol 444 GraphicUsed by:446
Symbol 445 TextUses:210Used by:446
Symbol 446 MovieClipUses:444 216 445Used by:Timeline
Symbol 447 SoundUsed by:Timeline
Symbol 448 TextUses:210Used by:Timeline
Symbol 449 FontUsed by:450
Symbol 450 TextUses:449Used by:Timeline
Symbol 451 GraphicUsed by:452
Symbol 452 MovieClipUses:451Used by:453
Symbol 453 MovieClipUses:452Used by:Timeline
Symbol 454 GraphicUsed by:Timeline
Symbol 455 EditableTextUses:206Used by:Timeline
Symbol 456 EditableTextUses:206Used by:Timeline
Symbol 457 EditableTextUses:206Used by:Timeline
Symbol 458 GraphicUsed by:463
Symbol 459 TextUses:210Used by:463
Symbol 460 TextUses:210Used by:463
Symbol 461 TextUses:210Used by:463
Symbol 462 TextUses:210Used by:463
Symbol 463 MovieClipUses:458 216 459 460 461 462Used by:Timeline
Symbol 464 GraphicUsed by:474
Symbol 465 TextUses:210Used by:474
Symbol 466 GraphicUsed by:474
Symbol 467 TextUses:210Used by:474
Symbol 468 GraphicUsed by:474
Symbol 469 TextUses:210Used by:474
Symbol 470 TextUses:210Used by:474
Symbol 471 TextUses:210Used by:474
Symbol 472 TextUses:210Used by:474
Symbol 473 TextUses:210Used by:474
Symbol 474 MovieClipUses:464 85 465 87 466 467 468 469 470 471 472 473Used by:Timeline
Symbol 475 SoundUsed by:Timeline

Instance Names

"BG"Frame 3Symbol 120 MovieClip
"Virus"Frame 3Symbol 128 MovieClip
"blood"Frame 3Symbol 137 MovieClip
"blood2"Frame 3Symbol 137 MovieClip
"BloodSplat"Frame 3Symbol 151 MovieClip
"LevelComplete"Frame 3Symbol 154 MovieClip
"blood3"Frame 3Symbol 137 MovieClip
"white1"Frame 3Symbol 157 MovieClip
"white2"Frame 3Symbol 157 MovieClip
"Orb_Move"Frame 3Symbol 160 MovieClip
"S_A"Frame 3Symbol 168 MovieClip
"AOE"Frame 3Symbol 172 MovieClip
"MineAttack"Frame 3Symbol 179 MovieClip
"VirusBrain"Frame 3Symbol 181 MovieClip
"ball"Frame 3Symbol 94 MovieClip
"Cash"Frame 3Symbol 183 MovieClip
"SmokeRing"Frame 3Symbol 186 MovieClip
"Food"Frame 3Symbol 188 MovieClip
"FOOD"Frame 3Symbol 188 MovieClip
"FooD"Frame 3Symbol 188 MovieClip
"HealPill"Frame 3Symbol 191 MovieClip
"HealAction"Frame 3Symbol 221 MovieClip
"SoundBox"Frame 3Symbol 228 MovieClip
"BG"Frame 7Symbol 120 MovieClip
"BG"Frame 17Symbol 120 MovieClip
"blood"Frame 17Symbol 137 MovieClip
"BloodSplat"Frame 17Symbol 151 MovieClip
"Virus"Frame 17Symbol 255 MovieClip
"blood2"Frame 17Symbol 137 MovieClip
"blood3"Frame 17Symbol 137 MovieClip
"LevelComplete"Frame 17Symbol 258 MovieClip
"white2"Frame 17Symbol 261 MovieClip
"white3"Frame 17Symbol 261 MovieClip
"white1"Frame 17Symbol 261 MovieClip
"VirusBrain"Frame 17Symbol 181 MovieClip
"Cash"Frame 17Symbol 183 MovieClip
"SmokeRing"Frame 17Symbol 186 MovieClip
"Food"Frame 17Symbol 188 MovieClip
"FooD"Frame 17Symbol 188 MovieClip
"FOOD"Frame 17Symbol 188 MovieClip
"fOOd"Frame 17Symbol 188 MovieClip
"HealPill"Frame 17Symbol 191 MovieClip
"HealAction"Frame 17Symbol 221 MovieClip
"NextLevel"Frame 27Symbol 273 Button
"Display"Frame 27Symbol 296 MovieClip
"UpgradeSize"Frame 27Symbol 304 MovieClip
"Reflex"Frame 27Symbol 310 MovieClip
"Orb_Button"Frame 27Symbol 317 MovieClip
"Blast_Wave"Frame 27Symbol 320 MovieClip
"Slow_Aura"Frame 27Symbol 323 MovieClip
"Mine_Button"Frame 27Symbol 326 MovieClip
"BG"Frame 32Symbol 120 MovieClip
"Virus"Frame 32Symbol 336 MovieClip
"BloodSplat"Frame 32Symbol 151 MovieClip
"blood"Frame 32Symbol 137 MovieClip
"blood2"Frame 32Symbol 137 MovieClip
"blood3"Frame 32Symbol 137 MovieClip
"blood4"Frame 32Symbol 137 MovieClip
"LevelComplete"Frame 32Symbol 339 MovieClip
"white2"Frame 32Symbol 341 MovieClip
"white1"Frame 32Symbol 341 MovieClip
"white3"Frame 32Symbol 341 MovieClip
"white4"Frame 32Symbol 341 MovieClip
"VirusBrain"Frame 32Symbol 181 MovieClip
"Cash"Frame 32Symbol 183 MovieClip
"SmokeRing"Frame 32Symbol 186 MovieClip
"Food"Frame 32Symbol 188 MovieClip
"FooD"Frame 32Symbol 188 MovieClip
"FOOD"Frame 32Symbol 188 MovieClip
"fOOd"Frame 32Symbol 188 MovieClip
"fooD"Frame 32Symbol 188 MovieClip
"HealPill"Frame 32Symbol 191 MovieClip
"HealAction"Frame 32Symbol 221 MovieClip
"BG"Frame 42Symbol 120 MovieClip
"blood"Frame 42Symbol 137 MovieClip
"blood2"Frame 42Symbol 137 MovieClip
"blood3"Frame 42Symbol 137 MovieClip
"blood4"Frame 42Symbol 137 MovieClip
"BloodSplat"Frame 42Symbol 151 MovieClip
"LevelComplete"Frame 42Symbol 349 MovieClip
"blood5"Frame 42Symbol 137 MovieClip
"Virus"Frame 42Symbol 352 MovieClip
"white1"Frame 42Symbol 354 MovieClip
"white2"Frame 42Symbol 354 MovieClip
"white4"Frame 42Symbol 354 MovieClip
"white3"Frame 42Symbol 354 MovieClip
"white5"Frame 42Symbol 354 MovieClip
"VirusBrain"Frame 42Symbol 181 MovieClip
"Cash"Frame 42Symbol 183 MovieClip
"SmokeRing"Frame 42Symbol 186 MovieClip
"Food"Frame 42Symbol 188 MovieClip
"FooD"Frame 42Symbol 188 MovieClip
"FOOD"Frame 42Symbol 188 MovieClip
"fOOd"Frame 42Symbol 188 MovieClip
"fooD"Frame 42Symbol 188 MovieClip
"HealPill"Frame 42Symbol 191 MovieClip
"HealAction"Frame 42Symbol 221 MovieClip
"BG"Frame 52Symbol 120 MovieClip
"blood"Frame 52Symbol 137 MovieClip
"blood2"Frame 52Symbol 137 MovieClip
"blood3"Frame 52Symbol 137 MovieClip
"blood4"Frame 52Symbol 137 MovieClip
"BloodSplat"Frame 52Symbol 151 MovieClip
"BloodSplat"Frame 52Symbol 151 MovieClip
"Virus"Frame 52Symbol 364 MovieClip
"LevelComplete"Frame 52Symbol 367 MovieClip
"blood5"Frame 52Symbol 137 MovieClip
"blood6"Frame 52Symbol 137 MovieClip
"white1"Frame 52Symbol 369 MovieClip
"white2"Frame 52Symbol 369 MovieClip
"white3"Frame 52Symbol 369 MovieClip
"white4"Frame 52Symbol 369 MovieClip
"white5"Frame 52Symbol 369 MovieClip
"white6"Frame 52Symbol 369 MovieClip
"VirusBrain"Frame 52Symbol 181 MovieClip
"Cash"Frame 52Symbol 183 MovieClip
"SmokeRing"Frame 52Symbol 186 MovieClip
"Food"Frame 52Symbol 188 MovieClip
"FooD"Frame 52Symbol 188 MovieClip
"FOOD"Frame 52Symbol 188 MovieClip
"fOOd"Frame 52Symbol 188 MovieClip
"fooD"Frame 52Symbol 188 MovieClip
"HealPill"Frame 52Symbol 191 MovieClip
"HealAction"Frame 52Symbol 221 MovieClip
"BG"Frame 62Symbol 120 MovieClip
"BloodSplat"Frame 62Symbol 151 MovieClip
"LevelComplete"Frame 62Symbol 377 MovieClip
"blood"Frame 62Symbol 137 MovieClip
"blood2"Frame 62Symbol 137 MovieClip
"blood3"Frame 62Symbol 137 MovieClip
"blood4"Frame 62Symbol 137 MovieClip
"Virus"Frame 62Symbol 380 MovieClip
"blood5"Frame 62Symbol 137 MovieClip
"blood6"Frame 62Symbol 137 MovieClip
"white1"Frame 62Symbol 383 MovieClip
"white2"Frame 62Symbol 383 MovieClip
"white3"Frame 62Symbol 383 MovieClip
"white4"Frame 62Symbol 383 MovieClip
"white5"Frame 62Symbol 383 MovieClip
"white6"Frame 62Symbol 383 MovieClip
"VirusBrain"Frame 62Symbol 181 MovieClip
"Cash"Frame 62Symbol 183 MovieClip
"SmokeRing"Frame 62Symbol 186 MovieClip
"Food"Frame 62Symbol 188 MovieClip
"FooD"Frame 62Symbol 188 MovieClip
"FOOD"Frame 62Symbol 188 MovieClip
"fOOd"Frame 62Symbol 188 MovieClip
"fooD"Frame 62Symbol 188 MovieClip
"FOod"Frame 62Symbol 188 MovieClip
"HealPill"Frame 62Symbol 191 MovieClip
"HealAction"Frame 62Symbol 221 MovieClip
"BG"Frame 72Symbol 120 MovieClip
"blood"Frame 72Symbol 137 MovieClip
"blood2"Frame 72Symbol 137 MovieClip
"blood3"Frame 72Symbol 137 MovieClip
"blood4"Frame 72Symbol 137 MovieClip
"blood5"Frame 72Symbol 137 MovieClip
"blood6"Frame 72Symbol 137 MovieClip
"BloodSplat"Frame 72Symbol 151 MovieClip
"Virus"Frame 72Symbol 391 MovieClip
"blood7"Frame 72Symbol 137 MovieClip
"blood8"Frame 72Symbol 137 MovieClip
"white1"Frame 72Symbol 394 MovieClip
"white2"Frame 72Symbol 394 MovieClip
"white4"Frame 72Symbol 394 MovieClip
"white6"Frame 72Symbol 394 MovieClip
"white3"Frame 72Symbol 394 MovieClip
"white5"Frame 72Symbol 394 MovieClip
"white7"Frame 72Symbol 394 MovieClip
"white8"Frame 72Symbol 394 MovieClip
"LevelComplete"Frame 72Symbol 397 MovieClip
"VirusBrain"Frame 72Symbol 181 MovieClip
"Cash"Frame 72Symbol 183 MovieClip
"SmokeRing"Frame 72Symbol 186 MovieClip
"Food"Frame 72Symbol 188 MovieClip
"FooD"Frame 72Symbol 188 MovieClip
"FOOD"Frame 72Symbol 188 MovieClip
"fOOd"Frame 72Symbol 188 MovieClip
"fooD"Frame 72Symbol 188 MovieClip
"FOod"Frame 72Symbol 188 MovieClip
"HealPill"Frame 72Symbol 191 MovieClip
"HealAction"Frame 72Symbol 221 MovieClip
"BG"Frame 82Symbol 120 MovieClip
"blood"Frame 82Symbol 137 MovieClip
"blood2"Frame 82Symbol 137 MovieClip
"blood3"Frame 82Symbol 137 MovieClip
"blood4"Frame 82Symbol 137 MovieClip
"blood5"Frame 82Symbol 137 MovieClip
"blood6"Frame 82Symbol 137 MovieClip
"BloodSplat"Frame 82Symbol 151 MovieClip
"LevelComplete"Frame 82Symbol 405 MovieClip
"Virus"Frame 82Symbol 410 MovieClip
"white1"Frame 82Symbol 412 MovieClip
"white2"Frame 82Symbol 412 MovieClip
"white3"Frame 82Symbol 412 MovieClip
"white4"Frame 82Symbol 412 MovieClip
"white5"Frame 82Symbol 412 MovieClip
"white6"Frame 82Symbol 412 MovieClip
"VirusBrain"Frame 82Symbol 181 MovieClip
"Cash"Frame 82Symbol 183 MovieClip
"SmokeRing"Frame 82Symbol 186 MovieClip
"Food"Frame 82Symbol 188 MovieClip
"FooD"Frame 82Symbol 188 MovieClip
"FOOD"Frame 82Symbol 188 MovieClip
"fOOd"Frame 82Symbol 188 MovieClip
"fooD"Frame 82Symbol 188 MovieClip
"FOod"Frame 82Symbol 188 MovieClip
"HealPill"Frame 82Symbol 191 MovieClip
"HealAction"Frame 82Symbol 221 MovieClip
"BG"Frame 92Symbol 120 MovieClip
"BloodSplat"Frame 92Symbol 151 MovieClip
"Virus"Frame 92Symbol 419 MovieClip
"blood"Frame 92Symbol 137 MovieClip
"blood2"Frame 92Symbol 137 MovieClip
"blood3"Frame 92Symbol 137 MovieClip
"blood4"Frame 92Symbol 137 MovieClip
"blood5"Frame 92Symbol 137 MovieClip
"white1"Frame 92Symbol 421 MovieClip
"white2"Frame 92Symbol 421 MovieClip
"white3"Frame 92Symbol 421 MovieClip
"white4"Frame 92Symbol 421 MovieClip
"white5"Frame 92Symbol 421 MovieClip
"LevelComplete"Frame 92Symbol 424 MovieClip
"VirusBrain"Frame 92Symbol 181 MovieClip
"Cash"Frame 92Symbol 183 MovieClip
"SmokeRing"Frame 92Symbol 186 MovieClip
"Food"Frame 92Symbol 188 MovieClip
"FooD"Frame 92Symbol 188 MovieClip
"FOOD"Frame 92Symbol 188 MovieClip
"fOOd"Frame 92Symbol 188 MovieClip
"fooD"Frame 92Symbol 188 MovieClip
"FOod"Frame 92Symbol 188 MovieClip
"HealPill"Frame 92Symbol 191 MovieClip
"HealAction"Frame 92Symbol 221 MovieClip
"BG"Frame 102Symbol 120 MovieClip
"blood"Frame 102Symbol 137 MovieClip
"blood2"Frame 102Symbol 137 MovieClip
"blood3"Frame 102Symbol 137 MovieClip
"blood4"Frame 102Symbol 137 MovieClip
"blood5"Frame 102Symbol 137 MovieClip
"BloodSplat"Frame 102Symbol 151 MovieClip
"LevelComplete"Frame 102Symbol 430 MovieClip
"Virus"Frame 102Symbol 433 MovieClip
"blood6"Frame 102Symbol 137 MovieClip
"blood7"Frame 102Symbol 137 MovieClip
"blood8"Frame 102Symbol 137 MovieClip
"blood9"Frame 102Symbol 137 MovieClip
"white1"Frame 102Symbol 435 MovieClip
"white2"Frame 102Symbol 435 MovieClip
"white3"Frame 102Symbol 435 MovieClip
"white4"Frame 102Symbol 435 MovieClip
"white5"Frame 102Symbol 435 MovieClip
"white6"Frame 102Symbol 435 MovieClip
"white9"Frame 102Symbol 435 MovieClip
"white7"Frame 102Symbol 435 MovieClip
"white8"Frame 102Symbol 435 MovieClip
"VirusBrain"Frame 102Symbol 181 MovieClip
"Cash"Frame 102Symbol 183 MovieClip
"SmokeRing"Frame 102Symbol 186 MovieClip
"Food"Frame 102Symbol 188 MovieClip
"FooD"Frame 102Symbol 188 MovieClip
"FOOD"Frame 102Symbol 188 MovieClip
"fOOd"Frame 102Symbol 188 MovieClip
"fooD"Frame 102Symbol 188 MovieClip
"FOod"Frame 102Symbol 188 MovieClip
"HealPill"Frame 102Symbol 191 MovieClip
"HealAction"Frame 102Symbol 221 MovieClip
"BG"Frame 492Symbol 120 MovieClip
"Virus"Frame 492Symbol 128 MovieClip
"blood"Frame 492Symbol 137 MovieClip
"white1"Frame 492Symbol 157 MovieClip
"VirusBrain"Frame 492Symbol 181 MovieClip
"ball"Frame 492Symbol 94 MovieClip
"SmokeRing"Frame 492Symbol 186 MovieClip
"Tur_1"Frame 492Symbol 453 MovieClip
"Tur_3"Frame 492Symbol 453 MovieClip
"Tur_2"Frame 492Symbol 453 MovieClip
"HealPill"Frame 492Symbol 191 MovieClip
"HealAction"Frame 492Symbol 221 MovieClip
"N_Button"Frame 492Symbol 463 MovieClip
"Guide"Frame 492Symbol 474 MovieClip
"SoundBox"Frame 492Symbol 228 MovieClip
"bar"Symbol 78 MovieClip Frame 1Symbol 7 MovieClip
"bargfx"Symbol 78 MovieClip Frame 1Symbol 10 MovieClip
"tankLogo"Symbol 78 MovieClip Frame 1Symbol 46 MovieClip
"bargfx"Symbol 78 MovieClip Frame 2Symbol 10 MovieClip
"loadingText"Symbol 78 MovieClip Frame 2Symbol 51 MovieClip
"bargfx"Symbol 78 MovieClip Frame 20Symbol 10 MovieClip
"Explode"Symbol 179 MovieClip Frame 21Symbol 177 MovieClip
"Locked"Symbol 317 MovieClip Frame 1Symbol 315 MovieClip
"Gray"Symbol 317 MovieClip Frame 1Symbol 316 MovieClip
"Locked"Symbol 320 MovieClip Frame 1Symbol 315 MovieClip
"Gray"Symbol 320 MovieClip Frame 1Symbol 316 MovieClip
"Locked"Symbol 326 MovieClip Frame 1Symbol 315 MovieClip
"Gray"Symbol 326 MovieClip Frame 1Symbol 316 MovieClip

Special Tags

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

Labels

"Menu"Frame 2
"Level1"Frame 3
"Fail"Frame 7
"Victory"Frame 12
"Up2"Frame 17
"Level2"Frame 17
"Victory2"Frame 22
"Upgrade"Frame 27
"Up3"Frame 32
"Level3"Frame 32
"Victory3"Frame 37
"Up4"Frame 42
"Level4"Frame 42
"Victory4"Frame 47
"Up5"Frame 52
"Level5"Frame 52
"Victory5"Frame 57
"Up6"Frame 62
"Level6"Frame 62
"Victory6"Frame 67
"Up7"Frame 72
"Level7"Frame 72
"Victory7"Frame 77
"Up8"Frame 82
"Level8"Frame 82
"Victory8"Frame 87
"Up9"Frame 92
"Level9"Frame 92
"Victory9"Frame 97
"Up10"Frame 102
"Level10"Frame 102
"GameVictory"Frame 107
"Credits"Frame 117
"Tutorial"Frame 492
"LOAD"Symbol 78 MovieClip Frame 1
"COMPLETE_STOP"Symbol 78 MovieClip Frame 2

Dynamic Text Variables

livesSymbol 195 EditableText""
scoreSymbol 211 EditableText""




http://swfchan.com/16/75301/info.shtml
Created: 6/4 -2019 08:03:06 Last modified: 6/4 -2019 08:03:06 Server time: 17/05 -2024 02:12:25