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

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

Rufus Rescue.swf

This is the info page for
Flash #22131

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


Text
YAY!

game paused
(press space to unpause)
(ESC : quit to main menu)

ArmorGames: Free Quality Flash Games. www.armorgames.com

Loading: Rufus Rescue (formerly WTF teh messy 2)

minigame is

100%

Click HERE to start

Grab the food falling from the sky
red food = bad
white food = good

Preloader Game: Hungry Blob

Arrow Keys: Move

Points:

1000

OMG YOU DIED!
PLAY AGAIN

100!

www.armorgames.com

PLAY!

omg button >:(

SETTINGS

CREDITS

MORE GAMES

Really Cool

Stage
I

ok

Stage
II

locked!

Stage
III

Stage
IV

hah!
nowai

back

game completed

FreeCheat: midget

Controls:
SPACEBAR : pause
W : Jump
A : Walk Left
D : Walk Right
Mouse : Aim & Shoot

Stage I:
Rufus is in danger, you have to reach the
magic bathroom faster as you can!
Tips:
Jump to avoid enemy bullets.

Stage II:
You're almoust getting to the top, try to not
fall, it's too high.
Tips:
Kill all enemies around to jump safely.

Stage III:
The last long journey to find rufus.
Tips:
Shoot all the time.

Stage IV:
Rescue Rufus! He's inside the boss, so you
gotta kill it!
Tips:
Shoot on his mouth.

Settings

Sound Volume:

Cheats:

SET

CHEAT!

CHEATER :P

OFF

OFF

50%

50%

100%

100%

Credits:

Sponsorship:
ArmorGames, Inc. www.armorgames.com
Scripting, Graphics:
Gabriel Ochsenhofer (gabs)
Based on Wyatt's Engine (stickmoose)
Sounds: Gabriel Ochsenhofer & Valve (c)
Music:
paragonx9, staticnoise, Kyuss, Radiohead
Beta testers:
Kenney, Stickmoose, gabs
Visit ArmorStudios.com and ArmorGames.com
for more fun!

Life:

100%

Points:

1000

fps

000

Boss:

100%

Well Done!

Game Over

ActionScript [AS1/AS2]

Frame 2
var loaded = _root.getBytesLoaded(); var total = _root.getBytesTotal(); ldpct.text = Math.ceil((loaded / total) * 100) + "%";
Frame 3
if (loaded != total) { gotoAndPlay (2); }
Frame 4
pldm128947 = new LoadVars(); pldm128947.mv = _level0._url; pldm128947.md = "dd7c88750b46a26c45c098566f73d378"; pldm128947.mid = 223; pldm128947.sendAndLoad("http://bot.armorstudios.com/track.php", pldm128947, "POST"); var userdata = SharedObject.getLocal("rufusrescue", "/"); if (userdata.data.gversion != "1.001") { userdata.data.gversion = "1.001"; userdata.data.level1 = false; userdata.data.level2 = false; userdata.data.level3 = false; userdata.data.level4 = false; userdata.data.timesplayed = 1; } if (userdata.data.volume == undefined) { userdata.data.volume = 100; } _global.user = userdata; _global.gamePaused = false; _global.z1 = false; _global.z2 = false; _global.z3 = false; _global.z4 = false; _global.z5 = false; _global.z6 = false; function createJumper(x, y) { var _local1 = "jumper" + n; ladders[_local1] = attachMovie("jumper", _local1, n); ladders[_local1]._x = x; ladders[_local1]._y = y; jumperCount++; n++; } function createProp(mesh, x, y, xpower, ypower) { var _local4 = "prop" + n; props[_local4] = attachMovie(mesh, _local4, n); props[_local4]._x = x; props[_local4]._y = y; props[_local4].xpow = xpower; props[_local4].ypow = ypower; props[_local4].rods = (-random(3)) + random(3); props[_local4]._rotation = random(361); props[_local4].onEnterFrame = function () { if (!_global.gamePaused) { this._rotation = this._rotation + this.rods; this._x = this._x + this.xpow; this._y = this._y + this.ypow; if (_root.level.hitTest(this._x, this._y, true)) { _root.createExplosion("expl1", this._x, this._y); var _local4 = new Sound(); rhit = 1 + random(2); _local4.attachSound("rubber_tire_impact_hard" + rhit); _local4.setVolume(_global.user.data.volume); _local4.start(0, 0); this.removeMovieClip(); } } }; propCount++; n++; } function encreateProp(mesh, x, y, xpower, ypower) { var _local4 = "prop" + n; enprops[_local4] = attachMovie(mesh, _local4, n); enprops[_local4]._x = x; enprops[_local4]._y = y; enprops[_local4].xpow = xpower; enprops[_local4].ypow = ypower; enprops[_local4].rods = (-random(3)) + random(3); enprops[_local4]._rotation = random(361); enprops[_local4].onEnterFrame = function () { if (!_global.gamePaused) { this._rotation = this._rotation + this.rods; this._x = this._x + this.xpow; this._y = this._y + this.ypow; for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 15) && (Math.abs(_root.props[i]._y - this._y) < 15)) { if (_root.props[i].hitTest(this._x, this._y, true)) { _root.props[i].removeMovieClip(); _root.createExplosion("expl1", this._x, this._y); this.removeMovieClip(); } } } if (_root.level.hitTest(this._x, this._y, true)) { _root.createExplosion("expl1", this._x, this._y); this.removeMovieClip(); } } }; enpropCount++; n++; } function createEnemy(mesh, x, y) { var _local1 = "enemy" + n; enemies[_local1] = attachMovie(mesh, _local1, n); enemies[_local1]._x = x; enemies[_local1]._y = y; enemyCount++; n++; } function faint() { fsound = new Sound(); fsound.attachSound("rufushitt"); fsound.setVolume(_global.user.data.volume); fsound.start(0, 0); _root.createExplosion("expl2", character._x, character._y - (character._height / 2)); _root.faintcount = _root.fmaxcount; } function createExplosion(mesh, x, y) { var _local1 = "expls" + n; explosions[_local1] = attachMovie(mesh, _local1, n); explosions[_local1]._x = x; explosions[_local1]._y = y; explCount++; n++; } function moveAll(xSpeed, ySpeed) { pdot._x = pdot._x - xSpeed; pdot._y = pdot._y - ySpeed; pdot2._x = pdot2._x - xSpeed; pdot2._y = pdot2._y - ySpeed; pdot3._x = pdot3._x - xSpeed; pdot3._y = pdot3._y - ySpeed; pdot4._x = pdot4._x - xSpeed; pdot4._y = pdot4._y - ySpeed; for (i in projectiles) { projectiles[i]._x = projectiles[i]._x - xSpeed; projectiles[i]._y = projectiles[i]._y - ySpeed; } for (i in props) { props[i]._x = props[i]._x - xSpeed; props[i]._y = props[i]._y - ySpeed; } for (i in enprops) { enprops[i]._x = enprops[i]._x - xSpeed; enprops[i]._y = enprops[i]._y - ySpeed; } for (i in enemies) { enemies[i]._x = enemies[i]._x - xSpeed; enemies[i]._y = enemies[i]._y - ySpeed; } for (i in ladders) { ladders[i]._x = ladders[i]._x - xSpeed; ladders[i]._y = ladders[i]._y - ySpeed; } for (i in explosions) { explosions[i]._x = explosions[i]._x - xSpeed; explosions[i]._y = explosions[i]._y - ySpeed; } for (i in powerups) { powerups[i]._x = powerups[i]._x - xSpeed; powerups[i]._y = powerups[i]._y - ySpeed; } for (i in cutscenes) { cutscenes[i].x = cutscenes[i].x - xSpeed; cutscenes[i].y = cutscenes[i].y - ySpeed; } for (i in breakables) { breakables[i]._x = breakables[i]._x - xSpeed; breakables[i]._y = breakables[i]._y - ySpeed; } } function scrollLevel() { camXSpeed = (-(level._x - ((level._x + (Stage.width / 2)) - ((character._x + _xmouse) / 2)))) / 4; camYSpeed = (-(level._y - ((level._y + (Stage.height / 2)) - (((character._y - (character._height / 2)) + _ymouse) / 2)))) / 4; level._x = level._x + Math.round(camXSpeed); level._y = level._y + Math.round(camYSpeed); levelmesh._x = levelmesh._x + Math.round(camXSpeed); levelmesh._y = levelmesh._y + Math.round(camYSpeed); levelforeground._x = levelforeground._x + Math.round(camXSpeed); levelforeground._y = levelforeground._y + Math.round(camYSpeed); character._x = character._x + Math.round(camXSpeed); character._y = character._y + Math.round(camYSpeed); moveAll(-Math.round(camXSpeed), -Math.round(camYSpeed)); } function addpoints(amount, xpos, ypos) { var _local2 = "expls" + n; explosions[_local2] = attachMovie("uppoints", _local2, n); explosions[_local2]._x = xpos; explosions[_local2]._y = ypos; explosions[_local2].anime.vtext.text = amount + "!"; _root.score = _root.score + amount; explCount++; n++; } function clearLevel() { cursor.removeMovieClip(); character.removeMovieClip(); level.removeMovieClip(); hud.removeMovieClip(); for (i in enemies) { enemies[i].removeMovieClip(); delete enemies[i]; } for (i in props) { props[i].removeMovieClip(); delete props[i]; } for (i in ladders) { ladders[i].removeMovieClip(); delete ladders[i]; } for (i in decals) { decals[i].removeMovieClip(); delete decals[i]; } for (i in projectiles) { projectiles[i].removeMovieClip(); delete projectiles[i]; } for (i in powerups) { powerups[i].removeMovieClip(); delete powerups[i]; } for (i in breakables) { breakables[i].removeMovieClip(); delete breakables[i]; } for (i in explosions) { explosions[i].removeMovieClip(); delete explosions[i]; } _root.armorgames_holder.removeMovieClip(); } function won1() { gotoAndPlay (19); } function build() { with (_root) { _root.attachMovie("armorgames_holder", "armorgames_holder", 900000); _root.onEnterFrame = function () { if (!_global.gamePaused) { if (_global.z4) { health = 100; } if (_global.z6) { character._yscale = 40; } if (_root._currentframe == zframe) { if (yspeed < maxgrav) { yspeed = yspeed + gravity; } while (level.hitTest(character._x, character._y, true)) { character._y = character._y - gravity; yspeed = -int(yspeed / 2); jumping = false; } if (faintcount > 0) { fainted = true; faintcount--; character.gotoAndStop("fainted"); } else { fainted = false; if (character._currentframe == 5) { character.gotoAndStop(1); } } if (Math.abs(yspeed) < 0.01) { yspeed = 0; } if (level.hitTest(character._x, character._y - character._height, true)) { if (yspeed < 0) { yspeed = 0; } yspeed++; } if (level.hitTest(character._x + 20, character._y - (character._height / 2), true) || (level.hitTest(character._x + 9, character._y - 10, true))) { character._x = character._x - maxspeed; xspeed2 = -Math.abs(xspeed2); moveright = false; } else { moveright = true; } if (level.hitTest(character._x - 20, character._y - (character._height / 2), true) || (level.hitTest(character._x - 9, character._y - 10, true))) { character._x = character._x + maxspeed; xspeed2 = Math.abs(xspeed2); moveleft = false; } else { moveleft = true; } if (Key.isDown(87)) { if (!jumping) { yspeed = yspeed - jpf1; if (!injuried) { character.gotoAndStop("jumping"); } jumping = true; } } if (Key.isDown(65) && (moveleft)) { if (!jumping) { walking = true; } character._xscale = -100; xspeed = -maxspeed; if (walking) { if (jumping && (!injuried)) { character.gotoAndStop("jumping"); } else if (!injuried) { character.gotoAndStop("walk"); } } } if (Key.isDown(68) && (moveright)) { if (!jumping) { walking = true; } character._xscale = 100; xspeed = maxspeed; if (walking) { if (jumping && (!injuried)) { character.gotoAndStop("jumping"); } else if (!injuried) { character.gotoAndStop("walk"); } } } if ((!Key.isDown(68)) && (!Key.isDown(65))) { walking = false; xspeed = 0; } if ((((!jumping) && (!walking)) && (!fainted)) && (!injuried)) { character.gotoAndStop("still"); } character._y = character._y + yspeed; character._x = character._x + xspeed; character._x = character._x + xspeed2; xspeed2 = xspeed2 * 0.9; if (Math.abs(xspeed2) < 0.01) { xspeed2 = 0; } scrollLevel(); if (n > 120000) { n = 1100; } cursor._x = _xmouse; cursor._y = _ymouse; for (i in _root.enprops) { if ((Math.abs(_root.enprops[i]._x - character._x) < 75) && (Math.abs(_root.enprops[i]._y - character._y) < 75)) { if (character.hitTest(_root.enprops[i]._x, _root.enprops[i]._y, true)) { health = health - 2; injuried = true; rhit = random(5) + 1; character.gotoAndStop("hit"); var _local3 = new Sound(); _local3.attachSound("flesh_impact_bullet" + rhit); _local3.setVolume(_global.user.data.volume); _local3.start(0, 0); yspeed = yspeed + (_root.enprops[i].ypow / 2); xspeed2 = xspeed2 + (_root.enprops[i].xpow / 2); _root.createExplosion("expl2", character._x, character._y - (character._height / 2)); _root.enprops[i].removeMovieClip(); } } } if (_root.health <= 0) { _root.gotoAndPlay(20); _root.health = 10; } } } if (_global.gamePaused && (Key.isDown(27))) { clearLevel(); Mouse.show(); stopAllSounds(); _root._quality = "HIGH"; _global.gamePaused = false; _root.pausemc.removeMovieClip(); _root.pausescreen.removeMovieClip(); _root.bpdata.dispose(); _root.gotoAndPlay(_global.menuframe); } if (Key.isDown(32) && (!holdp)) { if (!_global.gamePaused) { _global.gamePaused = true; Mouse.show(); var _local4 = new flash.display.BitmapData(550, 400, false, 4278190080); _local4.draw(_root); _root.attachMovie("empty", "pausescreen", _root.getNextHighestDepth()); pausescreen.attachBitmap(_local4, 1); var _local5 = new flash.filters.BlurFilter(3, 3, 2); pfar = new Array(_local5); pausescreen.filters = pfar; _root.attachMovie("pausemc", "pausemc", _root.getNextHighestDepth(), {_x:275, _y:200}); menu_s.setVolume(0); } else { _global.gamePaused = false; _root.pausemc.removeMovieClip(); _root.pausescreen.removeMovieClip(); _root.bpdata.dispose(); Mouse.hide(); menu_s.setVolume(_global.user.data.volume); } holdp = true; } else if (!Key.isDown(32)) { holdp = false; } }; _root.onMouseDown = function () { if (!_global.gamePaused) { if (_root._currentframe == zframe) { if (character._xscale == 100) { xuxx = _root._hangle; } else { xuxx = -180 + _root._hangle; } if (character._xscale == 100) { nzx = blspd * Math.cos(xuxx * (Math.PI/180)); nzy = blspd * Math.sin(xuxx * (Math.PI/180)); } else { nzx = (-blspd) * Math.cos(xuxx * (Math.PI/180)); nzy = (-blspd) * Math.sin(xuxx * (Math.PI/180)); } _root.createProp("wgun", character._x, character._y + character.arm._y, nzx, nzy); rshoot_s.start(0, 0); yspeed = yspeed - (nzy / 12); xspeed2 = xspeed2 - (nzx / 8); character.arm.play(); for (i in _root.props) { if (_root.props[i]._name == undefined) { delete _root.props[i]; } } } } }; } }
Instance of Symbol 177 MovieClip in Frame 5
onClipEvent (enterFrame) { this.onPress = function () { getURL ("http://www.armorgames.com", "_blank"); }; }
Frame 7
stop(); var menu_s = new Sound(); menu_s.attachSound("menusong"); menu_s.start(0, 0); menu_s.setVolume(_global.user.data.volume); menu_s.onSoundComplete = function () { menu_s.start(0, 0); }; _global.menuframe = _root._currentframe;
Frame 8
stop(); i = 1; while (i < 5) { if (_global.user.data["level" + i] == true) { _root["st" + i].gotoAndStop(3); _root["st" + (i + 1)].gotoAndStop(1); } else { _root["st" + (i + 1)].gotoAndStop(2); } i++; } var menu_s = new Sound(); menu_s.attachSound("won_lost"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); menu_s.onSoundComplete = function () { menu_s.start(0, 0); };
Instance of Symbol 212 MovieClip "st1" in Frame 8
on (release) { _root.nextFrame(); }
Instance of Symbol 215 MovieClip "st2" in Frame 8
on (release) { if (_global.user.data.level1) { _root.gotoAndPlay(_root._currentframe + 2); } }
Instance of Symbol 217 MovieClip "st3" in Frame 8
on (release) { if (_global.user.data.level2) { _root.gotoAndPlay(_root._currentframe + 3); } }
Instance of Symbol 220 MovieClip "st4" in Frame 8
on (release) { if (_global.user.data.level3) { _root.gotoAndPlay(_root._currentframe + 4); } }
Frame 9
stop();
Frame 10
stop();
Frame 11
stop();
Frame 12
stop();
Frame 13
stop(); stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("prepareloop"); menu_s.start(0, 0); menu_s.setVolume(_global.user.data.volume); menu_s.onSoundComplete = function () { menu_s.start(0, 0); };
Frame 14
stopAllSounds(); stop();
Frame 15
stop(); build(); if (_global.z1) { var gunpower = 60; } else { var gunpower = 30; } if (_global.z2) { var gravity = 0.05; } else { var gravity = 0.3; } if (_global.z3) { var maxspeed = 10; } else { var maxspeed = 6; } var maxgrav = 12; var xspeed = 0; var xspeed2 = 0; stop(); var yspeed = 0; var blspd = 8; var jumping = false; var jpf1 = 10; var jpf2 = 4; var herodead = false; var walking = false; var trueside = true; var health = 100; Mouse.hide(); _root._quality = "LOW"; _root.attachMovie("crosshair", "cursor", 250000); _root.hud.swapDepths(249000); var moveright = true; var moveleft = true; var ladders = new Object(); var props = new Object(); var enprops = new Object(); n = new Number(0); jumperCount = new Number(0); propCount = new Number(0); enpropCount = new Number(0); level.cacheAsBitmap = true; createJumper(jp1._x, jp1._y); enemies = new Object(); explosions = new Object(); enemyCount = new Number(); explCount = new Number(); createJumper(jp1._x, jp1._y); createJumper(jp2._x, jp2._y); var faintcount = 0; var fmaxcount = 240; var fainted = false; var injuried = false; var score = 0; createEnemy("thig", en1._x, en1._y); createEnemy("thig", en2._x, en2._y); createEnemy("thig", en3._x, en3._y); createEnemy("thig", en4._x, en4._y); createEnemy("thig", en5._x, en5._y); createEnemy("thig", en6._x, en6._y); createEnemy("thig", en7._x, en7._y); createEnemy("doppler", edp1._x, edp1._y); createEnemy("doppler", edp2._x, edp2._y); createEnemy("doppler", edp3._x, edp3._y); createEnemy("bomber", en_bomber1._x, en_bomber1._y); createEnemy("bomber", en_bomber2._x, en_bomber2._y); createEnemy("bomber", en_bomber3._x, en_bomber3._y); createEnemy("bomber", en_bomber4._x, en_bomber4._y); createEnemy("bomber", en_bomber5._x, en_bomber5._y); createEnemy("bomber", en_bomber6._x, en_bomber6._y); createEnemy("bomber", en_bomber7._x, en_bomber7._y); createEnemy("bcartbot", bcten1._x, bcten1._y); createEnemy("bcartbot", bcten2._x, bcten2._y); createEnemy("bcartbot", bcten3._x, bcten3._y); stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("ingameloop1"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); menu_s.onSoundComplete = function () { menu_s.start(0, 0); }; var zframe = _root._currentframe; var rshoot_s = new Sound(); rshoot_s.attachSound("rufus_shot"); rshoot_s.setVolume(_global.user.data.volume);
Instance of Symbol 267 MovieClip "pdot" in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.character._x, _root.character._y, true)) { _global.user.data.level1 = true; _global.user.flush(); _root.won1(); } }
Frame 16
stop(); build(); if (_global.z1) { var gunpower = 60; } else { var gunpower = 30; } if (_global.z2) { var gravity = 0.05; } else { var gravity = 0.3; } if (_global.z3) { var maxspeed = 10; } else { var maxspeed = 6; } var maxgrav = 12; var xspeed = 0; var xspeed2 = 0; stop(); var yspeed = 0; var blspd = 8; var jumping = false; var jpf1 = 10; var jpf2 = 4; var herodead = false; var walking = false; var trueside = true; var health = 100; Mouse.hide(); _root._quality = "LOW"; _root.attachMovie("crosshair", "cursor", 250000); _root.hud.swapDepths(249000); var moveright = true; var moveleft = true; var ladders = new Object(); var props = new Object(); var enprops = new Object(); n = new Number(0); jumperCount = new Number(0); propCount = new Number(0); enpropCount = new Number(0); level.cacheAsBitmap = true; enemies = new Object(); explosions = new Object(); enemyCount = new Number(); explCount = new Number(); var faintcount = 0; var fmaxcount = 240; var fainted = false; var injuried = false; var score = 0; stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("ingameloop4"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); menu_s.onSoundComplete = function () { menu_s.start(0, 0); }; var zframe = _root._currentframe; var rshoot_s = new Sound(); rshoot_s.attachSound("rufus_shot"); rshoot_s.setVolume(_global.user.data.volume);
Instance of Symbol 267 MovieClip "pdot" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.character._x, _root.character._y, true)) { _root.character._x = _root.pdot2._x - 50; _root.character._y = _root.pdot2._y + 50; } }
Instance of Symbol 267 MovieClip "pdot2" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.character._x, _root.character._y, true)) { _root.character._x = _root.pdot._x + 220; _root.character._y = _root.pdot._y + 50; } }
Instance of Symbol 267 MovieClip "pdot3" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.character._x, _root.character._y, true)) { _global.user.data.level2 = true; _global.user.flush(); _root.won1(); } }
Frame 17
stop(); build(); if (_global.z1) { var gunpower = 60; } else { var gunpower = 30; } if (_global.z2) { var gravity = 0.05; } else { var gravity = 0.3; } if (_global.z3) { var maxspeed = 10; } else { var maxspeed = 6; } var maxgrav = 12; var xspeed = 0; var xspeed2 = 0; stop(); var yspeed = 0; var blspd = 8; var jumping = false; var jpf1 = 10; var jpf2 = 4; var herodead = false; var walking = false; var trueside = true; var health = 100; Mouse.hide(); _root._quality = "LOW"; _root.attachMovie("crosshair", "cursor", 250000); _root.hud.swapDepths(249000); var moveright = true; var moveleft = true; var ladders = new Object(); var props = new Object(); var enprops = new Object(); n = new Number(0); jumperCount = new Number(0); propCount = new Number(0); enpropCount = new Number(0); level.cacheAsBitmap = true; enemies = new Object(); explosions = new Object(); enemyCount = new Number(); explCount = new Number(); var faintcount = 0; var fmaxcount = 240; var fainted = false; var injuried = false; var score = 0; stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("NG1514"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); menu_s.onSoundComplete = function () { menu_s.start(0, 0); }; var zframe = _root._currentframe; var rshoot_s = new Sound(); rshoot_s.attachSound("rufus_shot"); rshoot_s.setVolume(_global.user.data.volume);
Instance of Symbol 267 MovieClip "pdot" in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.character._x, _root.character._y, true)) { _global.user.data.level3 = true; _global.user.flush(); _root.won1(); } }
Frame 18
stop(); build(); if (_global.z1) { var gunpower = 60; } else { var gunpower = 30; } if (_global.z2) { var gravity = 0.05; } else { var gravity = 0.3; } if (_global.z3) { var maxspeed = 10; } else { var maxspeed = 6; } var maxgrav = 12; var xspeed = 0; var xspeed2 = 0; stop(); var yspeed = 0; var blspd = 8; var jumping = false; var jpf1 = 10; var jpf2 = 4; var herodead = false; var walking = false; var trueside = true; var health = 100; Mouse.hide(); _root._quality = "LOW"; _root.attachMovie("crosshair", "cursor", 250000); _root.hud.swapDepths(249000); var moveright = true; var moveleft = true; var ladders = new Object(); var props = new Object(); var enprops = new Object(); n = new Number(0); jumperCount = new Number(0); propCount = new Number(0); enpropCount = new Number(0); level.cacheAsBitmap = true; enemies = new Object(); explosions = new Object(); enemyCount = new Number(); explCount = new Number(); var faintcount = 0; var fmaxcount = 240; var fainted = false; var injuried = false; var score = 0; var menu_s = new Sound(); stopAllSounds(); menu_s.attachSound("bossmusic"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); menu_s.onSoundComplete = function () { menu_s.start(0, 0); }; var zframe = _root._currentframe; var rshoot_s = new Sound(); rshoot_s.attachSound("rufus_shot"); rshoot_s.setVolume(_global.user.data.volume);
Frame 19
clearLevel(); Mouse.show(); stop(); stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("done1"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); _root._quality = "HIGH";
Frame 20
clearLevel(); Mouse.show(); stop(); stopAllSounds(); var menu_s = new Sound(); menu_s.attachSound("gameoversound"); menu_s.setVolume(_global.user.data.volume); menu_s.start(0, 0); _root._quality = "HIGH";
Symbol 16 MovieClip [jumper] Frame 1
stop(); this.onEnterFrame = function () { if (this.hitTest(_root.character._x, _root.character._y + 5, true)) { this.gotoAndPlay(2); _root.yspeed = -25; } if (this.hitTest(_root.character._x, _root.character._y - 2, true)) { _root.yspeed = _root.yspeed - _root.gravity; } };
Symbol 24 MovieClip [bigyay] Frame 130
stop(); _global.user.data.level4 = true; _global.user.flush(); _root.won1(); this.removeMovieClip();
Symbol 26 MovieClip [rufus] Frame 1
stop(); health = 100; xspd = 0; yspd = 0; sright = true; mxspd = 2; damageing = false; dead = false; this.onEnterFrame = function () { yspd = yspd + _root.gravity; while (_root.level.hitTest(this._x, this._y, true)) { this._y--; yspd = -int(yspd / 2); } if (_root.level.hitTest(this._x + 10, this._y - (this._height / 2), true)) { xspd = -mxspd; this._xscale = -100; } if (_root.level.hitTest(this._x - 10, this._y - (this._height / 2), true)) { xspd = mxspd; this._xscale = 100; } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -7; _root.health = _root.health - 2; _root.faint(); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -6; _root.xspeed2 = xspd * 2; _root.health = _root.health - 2; _root.faint(); } this._y = this._y + yspd; this._x = this._x + xspd; };
Symbol 35 MovieClip [explo2] Frame 25
stop(); for (i in _root.explosions) { if (_root.explosions[i]._name == undefined) { delete _root.explosions[i]; } } for (i in _root.enemies) { if (_root.enemies[i]._name == undefined) { delete _root.enemies[i]; } } this.removeMovieClip();
Symbol 48 MovieClip [explo1] Frame 19
stop(); for (i in _root.explosions) { if (_root.explosions[i]._name == undefined) { delete _root.explosions[i]; } } for (i in _root.enemies) { if (_root.enemies[i]._name == undefined) { delete _root.enemies[i]; } } this.removeMovieClip();
Symbol 77 Button
on (release) { play(); }
Symbol 95 Button
on (release) { gotoAndPlay (2); }
Symbol 96 MovieClip Frame 1
stop();
Symbol 96 MovieClip Frame 2
stop(); points = 0; i = 0; fallspeed = 1.2; falltimer = 60; falltimers = 60; badfoodtimer = 120; badfoodtimers = 80; this.onEnterFrame = function () { if ((this._currentframe = 2)) { if (Key.isDown(37)) { if ((blob._x - (blob._width / 2)) > 0) { blob._x = blob._x - 2; } } if (Key.isDown(39)) { if ((blob._x + (blob._width / 2)) < 200) { blob._x = blob._x + 2; } } falltimer--; if (falltimer < 0) { if (falltimers > 20) { falltimers--; } i++; bfood.duplicateMovieClip("bfood" + i, i, {_y:0, _x:5 + random(190), _rotation:random(360)}); this["bfood" + i].onEnterFrame = function () { this._y = this._y + fallspeed; if (this.hitTest(blob)) { blob._width = blob._width + 0.4; blob._height = blob._height + 0.4; points++; if (fallspeed < 8) { fallspeed = fallspeed + 0.05; } this.removeMovieClip(); } if (this._y > 200) { this.removeMovieClip(); } }; falltimer = falltimers; } badfoodtimer--; if (badfoodtimer < 0) { if (badfoodtimers > 20) { badfoodtimers--; } i++; illfood.duplicateMovieClip("illfood" + i, i, {_y:0, _x:5 + random(190), _rotation:random(360)}); this["illfood" + i].onEnterFrame = function () { this._y = this._y + (fallspeed + 0.1); if (this.hitTest(blob)) { blob._width = blob._width - 4; blob._height = blob._height - 4; if (fallspeed > 4) { fallspeed = fallspeed - 0.1; } this.removeMovieClip(); } if (this._y > 200) { this.removeMovieClip(); } }; badfoodtimer = badfoodtimers; } knpoints.text = points; if (blob._width < 10) { gotoAndStop (3); blob._width = 16; } } };
Symbol 96 MovieClip Frame 3
stop();
Symbol 113 MovieClip [bcartbot] Frame 1
stop(); health = 90; xspd = 0; xspd2 = 4; pathstart = 0; pathend = 200; yspd = 0; mxspd = 2; damageing = false; dead = false; delay = 27; nowdelay = 0; ppow = 5; this.onEnterFrame = function () { if (!_global.gamePaused) { if ((Math.abs(this._x - _root.character._x) > 600) || (Math.abs(this._y - _root.character._y) > 440)) { this.gotoAndStop(3); } else { if (this._currentframe != 2) { this.gotoAndStop(2); } yspd = yspd + _root.gravity; xspd = xspd * 0.92; if (Math.abs(xspd) < 0.01) { xspd = 0; } while (_root.level.hitTest(this._x, this._y, true)) { this._y = this._y - _root.gravity; yspd = -int(yspd / 2); } if (_root.level.hitTest(this._x + 25, this._y - (this._height / 2), true)) { xspd = -Math.abs(xspd); xspd2 = -3; } if (_root.level.hitTest(this._x - 25, this._y - (this._height / 2), true)) { xspd = Math.abs(xspd); xspd2 = 3; } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -7; _root.health = _root.health - 7; _root.faint(); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -10; _root.xspeed2 = xspd * 2; _root.health = _root.health - 10; _root.faint(); } this._y = this._y + yspd; this._x = this._x + xspd; this._x = this._x + xspd2; pathstart = pathstart + (xspd2 + xspd); if (Math.abs(pathstart) >= pathend) { pathstart = 0; xspd2 = -xspd2; } if (nowdelay < 5) { xsource = this._x + this.turret._x; ysource = this._y + this.turret._y; heroxsource = _root.character._x; heroysource = _root.character._y; movetur = true; xdist = heroxsource - xsource; ydist = heroysource - ysource; hmzang = Math.atan2(ydist, xdist); ppowx = ppow * Math.cos(hmzang); ppowy = ppow * Math.sin(hmzang); dangle = hmzang * 57.2957795130823; } if (((dangle > 17) && (dangle < 180)) || ((dangle > -180) && (dangle < 130))) { turret._rotation = dangle; if (nowdelay <= 0) { _root.encreateProp("enbullet1", xsource, ysource, ppowx, ppowy); for (i in _root.enprops) { if (_root.enprops[i]._name == undefined) { delete _root.enprops[i]; } } nowdelay = delay; } } nowdelay--; for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 85) && (Math.abs(_root.props[i]._y - this._y) < 85)) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { this.health = this.health - _root.gunpower; damageing = true; this.gotoAndStop(3); yspd = yspd + (_root.props[i].ypow / 2); xspd = xspd + (_root.props[i].xpow / 2); _root.createExplosion("expl2", _root.props[i]._x, _root.props[i]._y); _root.props[i].removeMovieClip(); var _local4 = random(200); this["exp_ssy" + _local4] = new Sound(); this["exp_ssy" + _local4].attachSound("dopplerhit"); this["exp_ssy" + _local4].setVolume(_global.user.data.volume); this["exp_ssy" + _local4].start(0, 0); } } } if (this.health < 0) { _root.addpoints(1337, this._x, this._y); var _local5 = new Sound(); _local5.attachSound("omgexplode"); _local5.setVolume(_global.user.data.volume); _local5.start(0, 0); _root.createExplosion("explo2", this._x, this._y - (this._height / 2)); this.removeMovieClip(); } } } };
Symbol 118 MovieClip [bomber] Frame 1
stop(); health = 130; xspd = 0; yspd = 0; mxspd = 2; damageing = false; dead = false; delay = 35; nowdelay = 0; ppow = 5; this.onEnterFrame = function () { if (!_global.gamePaused) { if ((Math.abs(this._x - _root.character._x) > 600) || (Math.abs(this._y - _root.character._y) > 440)) { this.gotoAndStop(3); } else { if (this._currentframe != 2) { this.gotoAndStop(2); } yspd = yspd + _root.gravity; xspd = xspd * 0.92; if (Math.abs(xspd) < 0.01) { xspd = 0; } while (_root.level.hitTest(this._x, this._y, true)) { this._y = this._y - _root.gravity; yspd = -int(yspd / 2); } if (_root.level.hitTest(this._x + 10, this._y - (this._height / 2), true)) { xspd = -Math.abs(xspd); } if (_root.level.hitTest(this._x - 10, this._y - (this._height / 2), true)) { xspd = Math.abs(xspd); } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -7; _root.health = _root.health - 12; _root.faint(); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -10; _root.xspeed2 = xspd * 2; _root.health = _root.health - 7; _root.faint(); } this._y = this._y + yspd; this._x = this._x + xspd; if (nowdelay <= 0) { xsource = this._x + this.turret._x; ysource = this._y + this.turret._y; heroxsource = _root.character._x; heroysource = _root.character._y; movetur = true; xdist = heroxsource - xsource; ydist = heroysource - ysource; hmzang = Math.atan2(ydist, xdist); ppowx = ppow * Math.cos(hmzang); ppowy = ppow * Math.sin(hmzang); dangle = hmzang * 57.2957795130823; } if (((dangle > 17) && (dangle < 180)) || ((dangle > -180) && (dangle < 130))) { turret._rotation = dangle; if (nowdelay <= 0) { _root.encreateProp("enbullet1", xsource, ysource, ppowx, ppowy); for (i in _root.enprops) { if (_root.enprops[i]._name == undefined) { delete _root.enprops[i]; } } nowdelay = delay; } } nowdelay--; for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 85) && (Math.abs(_root.props[i]._y - this._y) < 85)) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { this.health = this.health - _root.gunpower; damageing = true; this.gotoAndStop(3); yspd = yspd + (_root.props[i].ypow / 2); xspd = xspd + (_root.props[i].xpow / 2); _root.createExplosion("expl2", _root.props[i]._x, _root.props[i]._y); _root.props[i].removeMovieClip(); var _local4 = random(200); this["exp_ssy" + _local4] = new Sound(); this["exp_ssy" + _local4].attachSound("dopplerhit"); this["exp_ssy" + _local4].setVolume(_global.user.data.volume); this["exp_ssy" + _local4].start(0, 0); } } } if (this.health < 0) { _root.addpoints(1350, this._x, this._y); var _local5 = new Sound(); _local5.attachSound("omgexplode"); _local5.setVolume(_global.user.data.volume); _local5.start(0, 0); _root.createExplosion("explo2", this._x, this._y - (this._height / 2)); this.removeMovieClip(); } } } };
Symbol 127 MovieClip [doppler] Frame 1
stop(); health = 110; xspd = 5; xdouble = 10; yspd = 0; sright = true; mxspd = 2; damageing = false; dead = false; rage = false; this.onEnterFrame = function () { if (!_global.gamePaused) { if ((Math.abs(this._x - _root.character._x) > 600) || (Math.abs(this._y - _root.character._y) > 400)) { this.gotoAndStop(4); } else { if ((!damageing) && ((this._currentframe != 2) || (this._currentframe != 3))) { if (!rage) { this.gotoAndStop(2); } else { this.gotoAndStop(3); } } yspd = yspd + _root.gravity; while (_root.level.hitTest(this._x, this._y, true)) { this._y--; yspd = -int(yspd / 2); } if (_root.level.hitTest(this._x + 30, this._y - (this._height / 2), true)) { if (!rage) { xspd = -mxspd; } else { xspd = -xdouble; } this._xscale = -100; } if (_root.level.hitTest(this._x - 30, this._y - (this._height / 2), true)) { if (!rage) { xspd = mxspd; } else { xspd = xdouble; } this._xscale = 100; } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -12; _root.health = _root.health - 2; _root.faint(); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -10; _root.xspeed2 = xspd * 2; _root.health = _root.health - 2; _root.faint(); } this._y = this._y + yspd; this._x = this._x + xspd; for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 100) && (Math.abs(_root.props[i]._y - this._y) < 100)) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { this.health = this.health - _root.gunpower; yspd = yspd + (_root.props[i].ypow / 2); xspd = xspd + (_root.props[i].xpow / 2); _root.createExplosion("expl2", _root.props[i]._x, _root.props[i]._y); _root.props[i].removeMovieClip(); rage = true; var _local4 = random(200); this["exp_ssy" + _local4] = new Sound(); this["exp_ssy" + _local4].attachSound("doppler_pain1"); this["exp_ssy" + _local4].setVolume(_global.user.data.volume); this["exp_ssy" + _local4].start(0, 0); } } } if (this.health < 0) { _root.addpoints(540, this._x, this._y); var _local5 = new Sound(); _local5.attachSound("dopplerdown"); _local5.setVolume(_global.user.data.volume); _local5.start(0, 0); _root.createExplosion("explo2", this._x, this._y - (this._height / 2)); this.removeMovieClip(); } } } };
Symbol 131 MovieClip Frame 6
_parent.gotoAndStop(2); _parent.damageing = false;
Symbol 132 MovieClip [thig] Frame 1
stop(); health = 10; xspd = 3; yspd = 0; sright = true; mxspd = 2; damageing = false; dead = false; this.onEnterFrame = function () { if (!_global.gamePaused) { if ((Math.abs(this._x - _root.character._x) > 600) || (Math.abs(this._y - _root.character._y) > 400)) { this.gotoAndStop(4); } else { if ((!damageing) && (this._currentframe != 2)) { this.gotoAndStop(2); } yspd = yspd + _root.gravity; while (_root.level.hitTest(this._x, this._y, true)) { this._y--; yspd = -int(yspd / 2); } if (_root.level.hitTest(this._x + 10, this._y - (this._height / 2), true)) { xspd = -mxspd; this._xscale = -100; } if (_root.level.hitTest(this._x - 10, this._y - (this._height / 2), true)) { xspd = mxspd; this._xscale = 100; } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -7; _root.health = _root.health - 2; _root.faint(); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -6; _root.xspeed2 = xspd * 2; _root.health = _root.health - 2; _root.faint(); } this._y = this._y + yspd; this._x = this._x + xspd; for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 85) && (Math.abs(_root.props[i]._y - this._y) < 85)) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { this.health = this.health - _root.gunpower; damageing = true; this.gotoAndStop(3); yspd = yspd + (_root.props[i].ypow / 2); xspd = xspd + (_root.props[i].xpow / 2); _root.createExplosion("expl2", this._x, this._y); _root.props[i].removeMovieClip(); } } } if (this.health < 0) { _root.addpoints(227, this._x, this._y); var _local4 = new Sound(); _local4.attachSound("rubber_tire_impact_hard3"); _local4.setVolume(_global.user.data.volume); _local4.start(0, 0); _root.createExplosion("explo1", this._x, this._y - (this._height / 2)); this.removeMovieClip(); } } } };
Symbol 132 MovieClip [thig] Frame 2
stop();
Symbol 132 MovieClip [thig] Frame 3
stop();
Symbol 132 MovieClip [thig] Frame 4
stop();
Symbol 136 MovieClip [expl1] Frame 14
stop(); for (i in _root.explosions) { if (_root.explosions[i]._name == undefined) { delete _root.explosions[i]; } } for (i in _root.enemies) { if (_root.enemies[i]._name == undefined) { delete _root.enemies[i]; } } this.removeMovieClip();
Symbol 139 MovieClip [expl2] Frame 8
stop(); for (i in _root.explosions) { if (_root.explosions[i]._name == undefined) { delete _root.explosions[i]; } } for (i in _root.enemies) { if (_root.enemies[i]._name == undefined) { delete _root.enemies[i]; } } this.removeMovieClip();
Symbol 143 MovieClip [uppoints] Frame 35
stop(); this.removeMovieClip();
Symbol 149 MovieClip [sat_e] Frame 1
stop(); health = 350; xspd = 0; yspd = 0; xspd2 = 0; yspd2 = 0; mxspd = 2; damageing = false; dead = false; this.onEnterFrame = function () { if (!_global.gamePaused) { if ((Math.abs(this._x - _root.character._x) > 600) || (Math.abs(this._y - _root.character._y) > 400)) { this.gotoAndStop(4); } else { if ((!damageing) && (this._currentframe != 2)) { this.gotoAndStop(2); } while (_root.level.hitTest(this._x, this._y, true)) { this._y = this._y - 1.1; yspd2 = 0; } while (_root.level.hitTest(this._x + 10, this._y - (this._height / 2), true)) { this._x = this._x - 1.1; xspd2 = 0; } while (_root.level.hitTest(this._x - 10, this._y - (this._height / 2), true)) { this._x = this._x + 1.1; xspd2 = 0; } while (_root.level.hitTest(this._x, this._y - 20, true)) { this._y = this._y + 1.1; yspd2 = 0; } if (this._x < _root.character._x) { xspd = 1; } else { xspd = -1; } if (this._y < _root.character._y) { yspd = 1; } else { yspd = -1; } if (this.hitTest(_root.character._x, _root.character._y, true) && (!_root.fainted)) { _root.yspeed = -(this.yspd + this.yspd2); _root.xspeed = -(this.xspd + this.xspd2); _root.health = _root.health - 5; _root.faint(); } else if (this.hitTest(_root.character._x, _root.character._y, true) && (_root.fainted)) { _root.yspeed = -(this.yspd + this.yspd2); _root.xspeed = -(this.xspd + this.xspd2); } if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (!_root.fainted)) { _root.yspeed = -(this.yspd + this.yspd2); _root.xspeed = -(this.xspd + this.xspd2); _root.health = _root.health - 5; _root.faint(); } else if ((this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) && (_root.fainted)) { _root.yspeed = -(this.yspd + this.yspd2); _root.xspeed = -(this.xspd + this.xspd2); } this._y = this._y + (yspd + yspd2); this._x = this._x + (xspd + xspd2); xspd2 = xspd2 * 0.86; yspd2 = yspd2 * 0.86; if (Math.abs(xspd2) < 0.1) { xspd2 = 0; } if (Math.abs(yspd2) < 0.1) { yspd2 = 0; } for (i in _root.props) { if ((Math.abs(_root.props[i]._x - this._x) < 25) && (Math.abs(_root.props[i]._y - this._y) < 25)) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { this.health = this.health - _root.gunpower; damageing = true; this.gotoAndStop(3); yspd2 = yspd2 + (_root.props[i].ypow / 2); xspd2 = xspd2 + (_root.props[i].xpow / 2); _root.createExplosion("expl2", this._x, this._y); _root.props[i].removeMovieClip(); rig = 1 + random(3); var _local4 = new Sound(); _local4.attachSound("metal_solid_impact_soft" + rig); _local4.setVolume(_global.user.data.volume); _local4.start(0, 0); } } } if (this.health < 0) { _root.addpoints(1259, this._x, this._y); var _local4 = new Sound(); _local4.attachSound("dopplerdown"); _local4.setVolume(_global.user.data.volume); _local4.start(0, 0); this.removeMovieClip(); } } } };
Symbol 177 MovieClip Frame 1
_root.stop();
Symbol 177 MovieClip Frame 245
_root.nextFrame();
Symbol 179 Button
on (press) { _root.play(); }
Symbol 182 MovieClip Frame 1
stop();
Symbol 182 MovieClip Frame 2
stop();
Symbol 188 MovieClip Frame 1
_root.stop();
Symbol 188 MovieClip Frame 525
stop(); _root.play();
Symbol 195 Button
on (release) { stopAllSounds(); gotoAndPlay (8); }
Symbol 198 Button
on (release) { stopAllSounds(); gotoAndPlay (13); }
Symbol 201 Button
on (release) { stopAllSounds(); gotoAndPlay (14); }
Symbol 205 Button
on (release) { bot_id = 223; getURL ("http://bot.armorstudios.com/armorgames.php?bid=" + bot_id, "_blank"); }
Symbol 212 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 3
stop();
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 3
stop();
Symbol 220 MovieClip Frame 1
stop();
Symbol 220 MovieClip Frame 3
stop();
Symbol 222 Button
on (release) { stopAllSounds(); gotoAndPlay (7); }
Symbol 225 MovieClip Frame 1
if (!_global.user.data.level4) { this._visible = false; }
Symbol 234 Button
on (release) { stopAllSounds(); gotoAndPlay (15); }
Symbol 235 Button
on (release) { stopAllSounds(); gotoAndPlay (8); }
Symbol 237 Button
on (release) { gotoAndPlay (16); }
Symbol 239 Button
on (release) { gotoAndPlay (17); }
Symbol 241 Button
on (release) { gotoAndPlay (18); }
Symbol 250 Button
on (release) { if (iptcheats.text == "42") { if (!_global.z1) { _global.z1 = true; iptcheats.text = "cheat1 ON"; } else { _global.z1 = false; iptcheats.text = "cheat1 OFF"; } } else if (iptcheats.text == "omgmoon") { if (!_global.z2) { _global.z2 = true; iptcheats.text = "cheat2 ON"; } else { _global.z2 = false; iptcheats.text = "cheat2 OFF"; } } else if (iptcheats.text == "glaielspeed") { if (!_global.z3) { _global.z3 = true; iptcheats.text = "cheat3 ON"; } else { _global.z3 = false; iptcheats.text = "cheat3 OFF"; } } else if (iptcheats.text == "armorstud") { if (!_global.z4) { _global.z4 = true; iptcheats.text = "cheat4 ON"; } else { _global.z4 = false; iptcheats.text = "cheat4 OFF"; } } else if (iptcheats.text == "pleasedoit") { if (!_global.z5) { _global.z5 = true; iptcheats.text = "all levels unlocked"; _global.user.data.level1 = true; _global.user.data.level2 = true; _global.user.data.level3 = true; _global.user.data.level4 = true; _global.user.flush(); } else { _global.z5 = false; iptcheats.text = "all levels locked"; _global.user.data.level1 = false; _global.user.data.level2 = false; _global.user.data.level3 = false; _global.user.data.level4 = false; _global.user.flush(); } } else if (iptcheats.text == "midget") { if (!_global.z6) { _global.z6 = true; iptcheats.text = "cheat6 ON"; } else { _global.z6 = false; iptcheats.text = "cheat6 OFF"; } } else { iptcheats.text = "INVALID INPUT"; } }
Symbol 253 Button
on (release) { _global.user.data.volume = 0; _global.user.flush(); menu_s.setVolume(_global.user.data.volume); }
Symbol 257 Button
on (release) { _global.user.data.volume = 50; _global.user.flush(); menu_s.setVolume(_global.user.data.volume); }
Symbol 260 Button
on (release) { _global.user.data.volume = 100; _global.user.flush(); menu_s.setVolume(_global.user.data.volume); }
Symbol 271 MovieClip Frame 1
stop();
Symbol 286 MovieClip Frame 15
stop();
Symbol 291 MovieClip Frame 15
stop(); _root.injuried = false; _parent.gotoAndStop(2);
Symbol 294 MovieClip Frame 8
_root.injuried = false;
Symbol 295 MovieClip Frame 1
stop();
Instance of Symbol 271 MovieClip "arm" in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { if ((!_global.gamePaused) && (!_root.herodead)) { _root._hangle_rad = (Math.atan2((this._y + _parent._y) - _root._ymouse, (this._x + _parent._x) - _root._xmouse) - ((Math.PI/180) * _parent._rotation)) - Math.PI; _root._hangle = _root._hangle_rad * 57.2957795130823; if (_parent._xscale == 100) { this._rotation = _root._hangle; } else { this._rotation = 180 - _root._hangle; } } }
Symbol 295 MovieClip Frame 5
stop();
Symbol 309 MovieClip Frame 1
delay = 30; sdelay = 0; this.onEnterFrame = function () { sdelay--; if (sdelay <= 0) { this.hbar._xscale = _root.health; this.hl = _root.health + "%"; sdelay = delay; this.hp = _root.score; } };
Symbol 314 MovieClip Frame 1
var fpscheck = 60;
Symbol 314 MovieClip Frame 2
var tim = getTimer();
Symbol 314 MovieClip Frame 31
var tim2 = (getTimer() - tim); fpscheck = Math.ceil(60000 / (2 * tim2)); gotoAndPlay (2);
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("doppler", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 321 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("thig", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 317 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("sat_e", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 319 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bcartbot", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Instance of Symbol 323 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.score == 0) { _root.createEnemy("bomber", _root.level._x + this._x, _root.level._y + this._y); this.swapDepths(500000 + random(100)); this.removeMovieClip(); } }
Symbol 340 MovieClip Frame 8
_parent.gotoAndStop(2);
Symbol 341 MovieClip Frame 1
stop(); var health = 3000; var maxhealth = health; var waypoint = 1; var maxwaypoint = 7; var speed = 5; var xspeed = 0; var yspeed = 0; var deadx = false; var deady = false; var calcang = false; var settimer = false; var timer = 0; var angle = 0; var virtualx = 0; var virtualy = 0; var timers = new Array(0, 300, 30, 60, 30, 60, 60, 60, 160); this.onEnterFrame = function () { if (!_global.gamePaused) { if (waypoint <= maxwaypoint) { if (Math.abs(this._x - (_root.level._x + _root.level["dest" + waypoint]._x)) < 6) { deadx = true; } if (Math.abs(this._y - (_root.level._y + _root.level["dest" + waypoint]._y)) < 6) { deady = true; } if (!calcang) { angle = Math.atan2((_root.level._y + _root.level["dest" + waypoint]._y) - this._y, (_root.level._x + _root.level["dest" + waypoint]._x) - this._x); } if (!settimer) { timer = timers[waypoint]; settimer = true; } if (!deady) { yspeed = Math.sin(angle) * speed; } else { yspeed = 0; } if (!deadx) { xspeed = Math.cos(angle) * speed; } else { xspeed = 0; } if (deadx && (deady)) { timer--; if (timer <= 0) { if (waypoint < 3) { _root.createEnemy("thig", this._x, this._y); } waypoint++; deadx = false; deady = false; calcang = false; settimer = false; } } } else { angle = Math.atan2(_root.character._y - this._y, _root.character._x - this._x); if (!settimer) { timer = timers[waypoint]; settimer = true; } yspeed = Math.sin(angle) * speed; xspeed = Math.cos(angle) * speed; timer--; if (timer < 0) { if (Math.round((health / maxhealth) * 100) < 60) { _root.createEnemy("sat_e", this._x, this._y); } if (speed > 6.6) { _root.createEnemy("bomber", this._x, this._y); } waypoint = 1; timer = 0; settimer = false; } } this._x = this._x + xspeed; this._y = this._y + yspeed; if (xspeed < 0) { _xscale = -100; } else { _xscale = 100; } if (_root.level.hitTest(this._x - (this._width / 2), this._y, true)) { this._x = this._x + (Math.abs(xspeed) + 1); } if (_root.level.hitTest(this._x + (this._width / 2), this._y, true)) { this._x = this._x - (Math.abs(xspeed) + 1); } if (_root.level.hitTest(this._x, this._y - (this._height / 2), true)) { this._y = this._y + (Math.abs(yspeed) + 1); } if (_root.level.hitTest(this._x, this._y + (this._height / 2), true)) { this._y = this._y - (Math.abs(yspeed) + 1); } _root.bf.text = Math.round((health / maxhealth) * 100) + "%"; for (i in _root.props) { if (this.hitTest(_root.props[i]._x, _root.props[i]._y, true)) { _root.createExplosion("expl1", _root.props[i]._x, _root.props[i]._y); _root.props[i].removeMovieClip(); } if (((_root.props[i].hitTest(this._x + this.p1._x, this._y + this.p1._y, true) || (_root.props[i].hitTest(this._x + this.p2._x, this._y + this.p2._y, true))) || (_root.props[i].hitTest(this._x + this.p3._x, this._y + this.p3._y, true))) || (_root.props[i].hitTest(this._x + this.p4._x, this._y + this.p4._y, true))) { this.health = this.health - _root.gunpower; speed = speed + 0.05; this.gotoAndStop(3); _root.createExplosion("expl2", this._x + this.p2._x, this._y + this.p2._y); _root.props[i].removeMovieClip(); } } if (this.hitTest(_root.character._x, _root.character._y, true)) { _root.yspeed = -10; if (!_root.fainted) { _root.health = _root.health - 10; _root.faint(); } } if (this.hitTest(_root.character._x, _root.character._y - _root.character._height, true)) { _root.yspeed = 10; if (!_root.fainted) { _root.health = _root.health - 10; _root.faint(); } } if (this.hitTest(_root.character._x - 18, _root.character._y - 10, true) || (this.hitTest(_root.character._x + 18, _root.character._y - 10, true))) { _root.yspeed = -10; _root.xspeed2 = xspeed * 2; if (!_root.fainted) { _root.health = _root.health - 10; _root.faint(); } } if (this.health < 0) { _root.addpoints(20563, this._x, this._y); this.swapDepths(_root.getNextHighestDepth()); _root.attachMovie("bigyay", "bigyay", _root.getNextHighestDepth(), {_x:275, _y:200}); _root.createEnemy("rufus", this._x, this._y); var _local4 = new Sound(); _local4.attachSound("bossdown"); _local4.setVolume(_global.user.data.volume); _local4.start(0, 0); this.removeMovieClip(); } } };
Symbol 348 Button
on (release) { stopAllSounds(); gotoAndPlay (8); }

Library Items

Symbol 1 Sound [rufushitt]
Symbol 2 Sound [rufus_shot]
Symbol 3 Sound [omgexplode]
Symbol 4 Sound [flesh_impact_bullet5]
Symbol 5 Sound [flesh_impact_bullet4]
Symbol 6 Sound [flesh_impact_bullet3]
Symbol 7 Sound [flesh_impact_bullet2]
Symbol 8 Sound [flesh_impact_bullet1]
Symbol 9 Sound [dopplerhit]
Symbol 10 Sound [dopplerdown]
Symbol 11 Sound [doppler_pain1]
Symbol 12 Sound [bossdown]
Symbol 13 GraphicUsed by:16
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:16
Symbol 16 MovieClip [jumper]Uses:13 15
Symbol 17 ShapeTweeningUsed by:20
Symbol 18 ShapeTweeningUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip [wgun]Uses:17 18 19
Symbol 21 FontUsed by:22 36 209 211 213 214 216 218 219 223 224 226 227 236 238 240 343 344
Symbol 22 TextUses:21Used by:23
Symbol 23 MovieClipUses:22Used by:24
Symbol 24 MovieClip [bigyay]Uses:23
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip [rufus]Uses:25
Symbol 27 GraphicUsed by:35
Symbol 28 GraphicUsed by:35
Symbol 29 GraphicUsed by:35
Symbol 30 GraphicUsed by:35
Symbol 31 GraphicUsed by:35
Symbol 32 GraphicUsed by:35
Symbol 33 GraphicUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClip [explo2]Uses:27 28 29 30 31 32 33 34
Symbol 36 TextUses:21Used by:37
Symbol 37 MovieClip [pausemc]Uses:36
Symbol 38 GraphicUsed by:41
Symbol 39 FontUsed by:40
Symbol 40 TextUses:39Used by:41
Symbol 41 MovieClip [armorgames_holder]Uses:38 40
Symbol 42 GraphicUsed by:48
Symbol 43 GraphicUsed by:48
Symbol 44 GraphicUsed by:48
Symbol 45 GraphicUsed by:48
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClip [explo1]Uses:42 43 44 45 46 47Used by:Timeline
Symbol 49 GraphicUsed by:61 340
Symbol 50 GraphicUsed by:61 340
Symbol 51 GraphicUsed by:61
Symbol 52 GraphicUsed by:61 340
Symbol 53 GraphicUsed by:61 340
Symbol 54 GraphicUsed by:61 340
Symbol 55 GraphicUsed by:61 340
Symbol 56 GraphicUsed by:61 340
Symbol 57 GraphicUsed by:61
Symbol 58 GraphicUsed by:61 340
Symbol 59 GraphicUsed by:61 340
Symbol 60 GraphicUsed by:61 340
Symbol 61 MovieClip [en_boss]Uses:49 50 51 52 53 54 55 56 57 58 59 60Used by:341
Symbol 62 MovieClip [empty]Used by:337 341  Timeline
Symbol 63 FontUsed by:64 67 73 75 76 79 80 92 93 94 251 252 254 255 258 259 263
Symbol 64 TextUses:63Used by:Timeline
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:Timeline
Symbol 67 TextUses:63Used by:Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:72 177
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:72 177
Symbol 72 MovieClipUses:69 71Used by:Timeline
Symbol 73 EditableTextUses:63Used by:Timeline
Symbol 74 GraphicUsed by:77 95 96 195 198 201 205 222 235 250 253 348
Symbol 75 TextUses:63Used by:96
Symbol 76 TextUses:63Used by:96
Symbol 77 ButtonUses:74Used by:96
Symbol 78 GraphicUsed by:96
Symbol 79 TextUses:63Used by:96
Symbol 80 TextUses:63Used by:96
Symbol 81 ShapeTweeningUsed by:86
Symbol 82 GraphicUsed by:86
Symbol 83 ShapeTweeningUsed by:86
Symbol 84 GraphicUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:81 82 83 84 85Used by:96
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:96
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:96
Symbol 91 GraphicUsed by:96
Symbol 92 TextUses:63Used by:96
Symbol 93 EditableTextUses:63Used by:96
Symbol 94 TextUses:63Used by:96
Symbol 95 ButtonUses:74Used by:96
Symbol 96 MovieClipUses:74 75 76 77 78 79 80 86 88 90 91 92 93 94 95Used by:Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:188  Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:101
Symbol 101 MovieClip [crosshair]Uses:100Used by:Timeline
Symbol 102 ShapeTweeningUsed by:105
Symbol 103 ShapeTweeningUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClip [enbullet1]Uses:102 103 104Used by:Timeline
Symbol 106 GraphicUsed by:110
Symbol 107 GraphicUsed by:110
Symbol 108 GraphicUsed by:110
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:106 107 108 109Used by:113
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:111Used by:113
Symbol 113 MovieClip [bcartbot]Uses:110 112Used by:Timeline
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:118
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClip [bomber]Uses:115 117Used by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:125 126 127
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:125 126 127
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:125 126 127
Symbol 125 MovieClipUses:120 122 124Used by:127
Symbol 126 MovieClipUses:120 122 124Used by:127
Symbol 127 MovieClip [doppler]Uses:120 122 124 125 126Used by:Timeline
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130 131 132
Symbol 130 MovieClipUses:129Used by:132
Symbol 131 MovieClipUses:129Used by:132
Symbol 132 MovieClip [thig]Uses:129 130 131Used by:Timeline
Symbol 133 ShapeTweeningUsed by:136
Symbol 134 ShapeTweeningUsed by:136
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClip [expl1]Uses:133 134 135Used by:Timeline
Symbol 137 ShapeTweeningUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClip [expl2]Uses:137 138Used by:Timeline
Symbol 140 FontUsed by:141
Symbol 141 EditableTextUses:140Used by:142
Symbol 142 MovieClipUses:141Used by:143
Symbol 143 MovieClip [uppoints]Uses:142Used by:Timeline
Symbol 144 ShapeTweeningUsed by:148
Symbol 145 GraphicUsed by:148
Symbol 146 ShapeTweeningUsed by:148
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:144 145 146 147Used by:149
Symbol 149 MovieClip [sat_e]Uses:148Used by:Timeline
Symbol 150 Sound [rubber_tire_impact_hard3]Used by:Timeline
Symbol 151 Sound [rubber_tire_impact_hard2]Used by:Timeline
Symbol 152 Sound [rubber_tire_impact_hard1]Used by:Timeline
Symbol 153 Sound [metal_solid_impact_soft3]Used by:Timeline
Symbol 154 Sound [metal_solid_impact_soft2]Used by:Timeline
Symbol 155 Sound [metal_solid_impact_soft1]Used by:Timeline
Symbol 156 Sound [NG1514]Used by:Timeline
Symbol 157 Sound [bossmusic]Used by:Timeline
Symbol 158 Sound [done1]Used by:Timeline
Symbol 159 Sound [gameoversound]Used by:Timeline
Symbol 160 Sound [won_lost]Used by:Timeline
Symbol 161 Sound [prepareloop]Used by:Timeline
Symbol 162 Sound [menusong]Used by:Timeline
Symbol 163 Sound [ingameloop4]Used by:Timeline
Symbol 164 Sound [ingameloop3]Used by:Timeline
Symbol 165 Sound [ingameloop2]Used by:Timeline
Symbol 166 Sound [ingameloop1]Used by:Timeline
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:177
Symbol 169 SoundUsed by:177
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:177
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:177
Symbol 174 FontUsed by:175
Symbol 175 TextUses:174Used by:176
Symbol 176 MovieClipUses:175Used by:177
Symbol 177 MovieClipUses:69 168 169 171 173 71 176 SS1Used by:Timeline
Symbol 178 GraphicUsed by:179 188
Symbol 179 ButtonUses:178Used by:188
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:180 181Used by:188
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:183Used by:188
Symbol 185 GraphicUsed by:188
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:188
Symbol 188 MovieClipUses:179 98 182 184 185 187 178 SS2Used by:Timeline
Symbol 189 BitmapUsed by:190
Symbol 190 GraphicUses:189Used by:Timeline
Symbol 191 FontUsed by:192 194 196 199 202 204 221 242
Symbol 192 TextUses:191Used by:193 195
Symbol 193 MovieClipUses:192Used by:195
Symbol 194 TextUses:191Used by:195
Symbol 195 ButtonUses:192 193 194 74Used by:Timeline
Symbol 196 TextUses:191Used by:197 198
Symbol 197 MovieClipUses:196Used by:198
Symbol 198 ButtonUses:196 197 74Used by:Timeline
Symbol 199 TextUses:191Used by:200 201
Symbol 200 MovieClipUses:199Used by:201
Symbol 201 ButtonUses:199 200 74Used by:Timeline
Symbol 202 TextUses:191Used by:203 205
Symbol 203 MovieClipUses:202Used by:205
Symbol 204 TextUses:191Used by:205
Symbol 205 ButtonUses:202 203 204 74Used by:Timeline
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:Timeline
Symbol 208 GraphicUsed by:212 215 217 220
Symbol 209 TextUses:21Used by:212
Symbol 210 GraphicUsed by:212 215 217 220
Symbol 211 TextUses:21Used by:212 215 217 220
Symbol 212 MovieClipUses:208 209 210 211Used by:Timeline
Symbol 213 TextUses:21Used by:215
Symbol 214 TextUses:21Used by:215 217
Symbol 215 MovieClipUses:208 213 210 214 211Used by:Timeline
Symbol 216 TextUses:21Used by:217
Symbol 217 MovieClipUses:208 216 210 214 211Used by:Timeline
Symbol 218 TextUses:21Used by:220
Symbol 219 TextUses:21Used by:220
Symbol 220 MovieClipUses:208 218 210 219 211Used by:Timeline
Symbol 221 TextUses:191Used by:222 235 348
Symbol 222 ButtonUses:221 74Used by:Timeline
Symbol 223 TextUses:21Used by:225
Symbol 224 TextUses:21Used by:225
Symbol 225 MovieClipUses:223 224Used by:Timeline
Symbol 226 TextUses:21Used by:Timeline
Symbol 227 TextUses:21Used by:Timeline
Symbol 228 GraphicUsed by:232 234 237 239 241
Symbol 229 GraphicUsed by:232
Symbol 230 GraphicUsed by:232
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:228 229 230 231Used by:234 237 239 241
Symbol 233 GraphicUsed by:234 237 239 241
Symbol 234 ButtonUses:232 233 228Used by:Timeline
Symbol 235 ButtonUses:221 74Used by:Timeline
Symbol 236 TextUses:21Used by:Timeline
Symbol 237 ButtonUses:232 233 228Used by:Timeline
Symbol 238 TextUses:21Used by:Timeline
Symbol 239 ButtonUses:232 233 228Used by:Timeline
Symbol 240 TextUses:21Used by:Timeline
Symbol 241 ButtonUses:232 233 228Used by:Timeline
Symbol 242 TextUses:191Used by:Timeline
Symbol 243 FontUsed by:244 245 246 247 248 249 263
Symbol 244 TextUses:243Used by:Timeline
Symbol 245 TextUses:243Used by:Timeline
Symbol 246 EditableTextUses:243Used by:Timeline
Symbol 247 TextUses:243Used by:250
Symbol 248 TextUses:243Used by:250
Symbol 249 TextUses:243Used by:250
Symbol 250 ButtonUses:247 248 249 74Used by:Timeline
Symbol 251 TextUses:63Used by:253
Symbol 252 TextUses:63Used by:253
Symbol 253 ButtonUses:251 252 74Used by:Timeline
Symbol 254 TextUses:63Used by:257
Symbol 255 TextUses:63Used by:257
Symbol 256 GraphicUsed by:257 260
Symbol 257 ButtonUses:254 255 256Used by:Timeline
Symbol 258 TextUses:63Used by:260
Symbol 259 TextUses:63Used by:260
Symbol 260 ButtonUses:258 259 256Used by:Timeline
Symbol 261 FontUsed by:262
Symbol 262 TextUses:261Used by:Timeline
Symbol 263 TextUses:63 243Used by:Timeline
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:Timeline
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:Timeline
Symbol 268 GraphicUsed by:295
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:271
Symbol 271 MovieClipUses:270Used by:295
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClipUses:272Used by:278
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:278
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:278
Symbol 278 MovieClipUses:273 275 277Used by:295
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:286
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:286
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:285
Symbol 285 MovieClipUses:284Used by:286
Symbol 286 MovieClipUses:280 282 285Used by:295
Symbol 287 GraphicUsed by:291
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:291
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:287 289 290Used by:295
Symbol 292 GraphicUsed by:294
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:292 293Used by:295
Symbol 295 MovieClipUses:268 271 278 286 291 294Used by:Timeline
Symbol 296 GraphicUsed by:Timeline
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:309
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:309
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:309
Symbol 303 FontUsed by:304 305
Symbol 304 TextUses:303Used by:309
Symbol 305 EditableTextUses:303Used by:309
Symbol 306 FontUsed by:307 308
Symbol 307 TextUses:306Used by:309
Symbol 308 EditableTextUses:306Used by:309
Symbol 309 MovieClipUses:298 300 302 304 305 307 308Used by:Timeline
Symbol 310 GraphicUsed by:314
Symbol 311 FontUsed by:312 313
Symbol 312 TextUses:311Used by:314
Symbol 313 EditableTextUses:311Used by:314
Symbol 314 MovieClipUses:310 312 313Used by:Timeline
Symbol 315 GraphicUsed by:333
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:333 335
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:333 335
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:333 335
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:333 335
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:326
Symbol 326 MovieClipUses:325Used by:333
Symbol 327 ShapeTweeningUsed by:330
Symbol 328 ShapeTweeningUsed by:330
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:327 328 329Used by:333
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:331Used by:333 335
Symbol 333 MovieClipUses:315 317 319 321 323 326 330 332Used by:Timeline
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334 332 321 319 317 323Used by:Timeline
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:336 62Used by:Timeline
Symbol 338 GraphicUsed by:340
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:49 50 338 52 53 54 55 56 339 58 59 60Used by:341
Symbol 341 MovieClipUses:61 62 340Used by:Timeline
Symbol 342 GraphicUsed by:Timeline
Symbol 343 TextUses:21Used by:Timeline
Symbol 344 EditableTextUses:21Used by:Timeline
Symbol 345 GraphicUsed by:Timeline
Symbol 346 FontUsed by:347 350
Symbol 347 TextUses:346Used by:Timeline
Symbol 348 ButtonUses:221 74Used by:Timeline
Symbol 349 GraphicUsed by:Timeline
Symbol 350 TextUses:346Used by:Timeline
Streaming Sound 1Used by:Symbol 177 MovieClip
Streaming Sound 2Used by:Symbol 188 MovieClip

Instance Names

"ldpct"Frame 1Symbol 73 EditableText
"pgame"Frame 1Symbol 96 MovieClip
"st1"Frame 8Symbol 212 MovieClip
"st2"Frame 8Symbol 215 MovieClip
"st3"Frame 8Symbol 217 MovieClip
"st4"Frame 8Symbol 220 MovieClip
"iptcheats"Frame 13Symbol 246 EditableText
"level"Frame 15Symbol 265 MovieClip
"jp1"Frame 15Symbol 62 MovieClip [empty]
"en1"Frame 15Symbol 62 MovieClip [empty]
"en2"Frame 15Symbol 62 MovieClip [empty]
"en3"Frame 15Symbol 62 MovieClip [empty]
"en4"Frame 15Symbol 62 MovieClip [empty]
"en5"Frame 15Symbol 62 MovieClip [empty]
"edp1"Frame 15Symbol 62 MovieClip [empty]
"edp2"Frame 15Symbol 62 MovieClip [empty]
"edp3"Frame 15Symbol 62 MovieClip [empty]
"en6"Frame 15Symbol 62 MovieClip [empty]
"en7"Frame 15Symbol 62 MovieClip [empty]
"en_bomber1"Frame 15Symbol 62 MovieClip [empty]
"en_bomber2"Frame 15Symbol 62 MovieClip [empty]
"en_bomber3"Frame 15Symbol 62 MovieClip [empty]
"en_bomber4"Frame 15Symbol 62 MovieClip [empty]
"en_bomber5"Frame 15Symbol 62 MovieClip [empty]
"en_bomber6"Frame 15Symbol 62 MovieClip [empty]
"jp2"Frame 15Symbol 62 MovieClip [empty]
"en_bomber7"Frame 15Symbol 62 MovieClip [empty]
"pk1"Frame 15Symbol 62 MovieClip [empty]
"bcten1"Frame 15Symbol 62 MovieClip [empty]
"bcten2"Frame 15Symbol 62 MovieClip [empty]
"bcten3"Frame 15Symbol 62 MovieClip [empty]
"pdot"Frame 15Symbol 267 MovieClip
"character"Frame 15Symbol 295 MovieClip
"hud"Frame 15Symbol 309 MovieClip
"fpsman"Frame 15Symbol 314 MovieClip
"level"Frame 16Symbol 333 MovieClip
"pdot"Frame 16Symbol 267 MovieClip
"pdot2"Frame 16Symbol 267 MovieClip
"pdot3"Frame 16Symbol 267 MovieClip
"level"Frame 17Symbol 335 MovieClip
"pdot"Frame 17Symbol 267 MovieClip
"level"Frame 18Symbol 337 MovieClip
"pdot"Frame 18Symbol 341 MovieClip
"bf"Frame 18Symbol 344 EditableText
"blob"Symbol 96 MovieClip Frame 2Symbol 86 MovieClip
"bfood"Symbol 96 MovieClip Frame 2Symbol 88 MovieClip
"illfood"Symbol 96 MovieClip Frame 2Symbol 90 MovieClip
"knpoints"Symbol 96 MovieClip Frame 2Symbol 93 EditableText
"turret"Symbol 113 MovieClip [bcartbot] Frame 1Symbol 112 MovieClip
"turret"Symbol 118 MovieClip [bomber] Frame 1Symbol 115 MovieClip
"vtext"Symbol 142 MovieClip Frame 1Symbol 141 EditableText
"anime"Symbol 143 MovieClip [uppoints] Frame 1Symbol 142 MovieClip
"types"Symbol 188 MovieClip Frame 40Symbol 182 MovieClip
"arm"Symbol 295 MovieClip Frame 1Symbol 271 MovieClip
"hbar"Symbol 309 MovieClip Frame 1Symbol 302 MovieClip
"dest1"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest2"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest3"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest5"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest4"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest6"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"dest7"Symbol 337 MovieClip Frame 1Symbol 62 MovieClip [empty]
"p1"Symbol 341 MovieClip Frame 1Symbol 62 MovieClip [empty]
"p2"Symbol 341 MovieClip Frame 1Symbol 62 MovieClip [empty]
"p3"Symbol 341 MovieClip Frame 1Symbol 62 MovieClip [empty]
"p4"Symbol 341 MovieClip Frame 1Symbol 62 MovieClip [empty]

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "rufushitt"
ExportAssets (56)Timeline Frame 1Symbol 2 as "rufus_shot"
ExportAssets (56)Timeline Frame 1Symbol 3 as "omgexplode"
ExportAssets (56)Timeline Frame 1Symbol 4 as "flesh_impact_bullet5"
ExportAssets (56)Timeline Frame 1Symbol 5 as "flesh_impact_bullet4"
ExportAssets (56)Timeline Frame 1Symbol 6 as "flesh_impact_bullet3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "flesh_impact_bullet2"
ExportAssets (56)Timeline Frame 1Symbol 8 as "flesh_impact_bullet1"
ExportAssets (56)Timeline Frame 1Symbol 9 as "dopplerhit"
ExportAssets (56)Timeline Frame 1Symbol 10 as "dopplerdown"
ExportAssets (56)Timeline Frame 1Symbol 11 as "doppler_pain1"
ExportAssets (56)Timeline Frame 1Symbol 12 as "bossdown"
ExportAssets (56)Timeline Frame 1Symbol 16 as "jumper"
ExportAssets (56)Timeline Frame 1Symbol 20 as "wgun"
ExportAssets (56)Timeline Frame 1Symbol 24 as "bigyay"
ExportAssets (56)Timeline Frame 1Symbol 26 as "rufus"
ExportAssets (56)Timeline Frame 1Symbol 35 as "explo2"
ExportAssets (56)Timeline Frame 1Symbol 37 as "pausemc"
ExportAssets (56)Timeline Frame 1Symbol 41 as "armorgames_holder"
ExportAssets (56)Timeline Frame 1Symbol 48 as "explo1"
ExportAssets (56)Timeline Frame 1Symbol 61 as "en_boss"
ExportAssets (56)Timeline Frame 1Symbol 62 as "empty"
ExportAssets (56)Timeline Frame 4Symbol 101 as "crosshair"
ExportAssets (56)Timeline Frame 4Symbol 105 as "enbullet1"
ExportAssets (56)Timeline Frame 4Symbol 113 as "bcartbot"
ExportAssets (56)Timeline Frame 4Symbol 118 as "bomber"
ExportAssets (56)Timeline Frame 4Symbol 127 as "doppler"
ExportAssets (56)Timeline Frame 4Symbol 132 as "thig"
ExportAssets (56)Timeline Frame 4Symbol 136 as "expl1"
ExportAssets (56)Timeline Frame 4Symbol 139 as "expl2"
ExportAssets (56)Timeline Frame 4Symbol 143 as "uppoints"
ExportAssets (56)Timeline Frame 4Symbol 149 as "sat_e"
ExportAssets (56)Timeline Frame 4Symbol 150 as "rubber_tire_impact_hard3"
ExportAssets (56)Timeline Frame 4Symbol 151 as "rubber_tire_impact_hard2"
ExportAssets (56)Timeline Frame 4Symbol 152 as "rubber_tire_impact_hard1"
ExportAssets (56)Timeline Frame 4Symbol 153 as "metal_solid_impact_soft3"
ExportAssets (56)Timeline Frame 4Symbol 154 as "metal_solid_impact_soft2"
ExportAssets (56)Timeline Frame 4Symbol 155 as "metal_solid_impact_soft1"
ExportAssets (56)Timeline Frame 4Symbol 156 as "NG1514"
ExportAssets (56)Timeline Frame 4Symbol 157 as "bossmusic"
ExportAssets (56)Timeline Frame 4Symbol 158 as "done1"
ExportAssets (56)Timeline Frame 4Symbol 159 as "gameoversound"
ExportAssets (56)Timeline Frame 4Symbol 160 as "won_lost"
ExportAssets (56)Timeline Frame 4Symbol 161 as "prepareloop"
ExportAssets (56)Timeline Frame 4Symbol 162 as "menusong"
ExportAssets (56)Timeline Frame 4Symbol 163 as "ingameloop4"
ExportAssets (56)Timeline Frame 4Symbol 164 as "ingameloop3"
ExportAssets (56)Timeline Frame 4Symbol 165 as "ingameloop2"
ExportAssets (56)Timeline Frame 4Symbol 166 as "ingameloop1"

Labels

"pointer"Symbol 182 MovieClip Frame 1
"hand"Symbol 182 MovieClip Frame 2
"still"Symbol 295 MovieClip Frame 1
"walk"Symbol 295 MovieClip Frame 2
"jumping"Symbol 295 MovieClip Frame 3
"hit"Symbol 295 MovieClip Frame 4
"fainted"Symbol 295 MovieClip Frame 5

Dynamic Text Variables

hlSymbol 305 EditableText"100%"
hpSymbol 308 EditableText"1000"
fpscheckSymbol 313 EditableText"000"




http://swfchan.com/5/22131/info.shtml
Created: 27/5 -2019 02:56:35 Last modified: 27/5 -2019 02:56:35 Server time: 17/05 -2024 06:28:29