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

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

Bumper Craft.swf

This is the info page for
Flash #23694

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


Text
Loading...

Mute

Mute

Insert

Please Insert your name!

Please Insert your name!

Play Game

Play Game

Instructions

Credits

Play more games!

Highscores

Instructions

Credits

Play more games!

Highscores

Play Game!

Back

Play Game!

Back

Use ARROW KEYS to control Bumpercraft
Bumping into enemies and pointy things may cause a
minor case of death
Press SPACE to shoot - Useable only on sludge
The whirlwind at each level is a portal to the next

Use ARROW KEYS to control Bumpercraft
Bumping into enemies and pointy things may cause a
minor case of death
Press SPACE to shoot - Useable only on sludge
The whirlwind at each level is a portal to the next

Instructions, in four steps!

Instructions, in four steps!

Art and Animation: Axel Hammarbäck
ActionScript and Concept: Nicolay Edin
Level Design: Nicolay Edin
Audio By: http://www.t7online.dk/

Art and Animation: Axel Hammarbäck
ActionScript and Concept: Nicolay Edin
Level Design: Nicolay Edin
Audio By: http://www.t7online.dk/

Credits: Who made this masterpiece of a game

Credits: Who made this masterpiece of a game

A chemical plant has started production on the top of
the river. Chemicals has now started polluting the
river and you are the only one who can stop it with
your home made hovercraft.

A chemical plant has started production on the top of
the river. Chemicals has now started polluting the
river and you are the only one who can stop it with
your home made hovercraft.

Story:

Story:

Main Menu        Highscore

THANKS FOR PLAYING!

YOUR SCORE:

YOUR SCORE:

Level Complete!

Hit SPACE to go to the next level

Current Score:

Health: 100%

Restart Level

Restart Level

Restart Level

Quality

Quality

Level:

15/30

Bonus:

2000

Danger Strong Current!!!!

Danger Strong Current!!!!

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (load) { done = false; } onClipEvent (enterFrame) { if (this.bar._yscale >= 100) { _root.play(); } }
Instance of Symbol 21 MovieClip in Frame 2
on (release) { getURL ("http://www.armorgames.com", "_BLANK"); }
Instance of Symbol 28 MovieClip in Frame 139
onClipEvent (load) { this.stop(); }
Frame 140
function itemHandler(obj, item) { getURL ("http://www.armorgames.com", "_blank"); } function highQ(obj, item) { getURL ("http://www.armorgames.com", "_blank"); } _root.createEmptyMovieClip("sound1", 83242); _root.createEmptyMovieClip("sound2", 80123); _root.createEmptyMovieClip("sound3", 81234); _root.createEmptyMovieClip("sound3", 84351); shot = new Sound(sound3); shot.attachSound("bullet"); shot.setVolume(30); fan = new Sound(sound1); fan.attachSound("fanloop"); fan.start(0, 1000000); fan.setVolume(0); bgmusic = new Sound(sound2); bgmusic.attachSound("bgmusic"); menuMusic = new Sound(sound4); menuMusic.attachSound("menu"); menuMusic.start(0, 1000); placeholdersound = new Sound(); root_cm = new ContextMenu(); root_cm.hideBuiltInItems(); _root.menu = root_cm; root_cm = new ContextMenu(); root_cm.hideBuiltInItems(); root_cm.customItems.push(new ContextMenuItem("Armor Games", itemHandler)); root_cm.customItems.push(new ContextMenuItem("Highscores", highQ)); _root.menu = root_cm; _root.pname = "Insert"; stop();
Instance of Symbol 28 MovieClip in Frame 140
onClipEvent (load) { this.stop(); }
Instance of Symbol 67 MovieClip in Frame 140
onClipEvent (enterFrame) { this.onPress = function () { getURL ("http://www.armorgames.com", "_blank"); }; }
Frame 141
stop();
Frame 145
fan.start(0, 10000); lvlcurrent = 0; score = 0; health = 100; deadslimenum = 0; lvl = 1; lvlpoints = 2000; vol = 0; newVol = 0; bgmusic.start(0, 1000); bgmusic.setVolume(70); _root.onEnterFrame = function () { vol = vol - ((vol - newVol) / 17); fan.setVolume(vol); trace(vol); if (Key.isDown(38) || (Key.isDown(40))) { newVol = 80; } else { newVol = 0; } _root.player.ySpeed = _root.player.ySpeed - _root.lvlcurrent; if ((_root.ground._x < 20) && (lvlpoints >= 1)) { lvlpoints--; } currentlevel = lvl + "/30"; texthealth = ("Health:" + health) + "%"; }; function spawnexpl(thisx, thisy) { rand = random(1000) + 100; _root.explosion.duplicateMovieClip("expl" + rand, rand); _root["expl" + rand]._x = thisx; _root["expl" + rand]._y = thisy; _root.health = _root.health - 20; trace("I<3COOKIES"); } function hithard(thisname) { if ((_root.player.hitTest(thisname) && (_root.groundhit)) && (_root.player.hurt._alpha < 10)) { _root.health = _root.health - 10; trace("ACHOOO"); } } function expl(thisname, thisy, thisx) { trace("GESHUNDHEIT"); spawnexpl(thisx, thisy); _root.health = _root.health - 10; removeMovieClip(thisname); } function portal(thisname, goto) { _name = mcname; if (_root.player.hitTest(thisname) && (_root.objhit)) { _root.player._x = _root.objects[goto]._x; _root.player._y = _root.objects[goto]._y; } } stop(); gamepause = false; System.security.allowDomain("http//www.nbstuff.com"); objhit = false; _root._quality = "MEDIUM"; bullettime = 50; bulletspeed = 4; bulletdmg = 5; groundx = 0; levelendx = 700;
Instance of Symbol 106 MovieClip "playerbullet" in Frame 145
onClipEvent (load) { speed = 9; } onClipEvent (enterFrame) { x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; _x = (_x + x); _y = (_y + y); if (_x > 700) { _root.player.fired = false; _x = 1000; } if (_x < 0) { _x = 1000; } if (_y < 0) { _x = 1000; } if (_y > 400) { _x = 1000; } }
Instance of Symbol 225 MovieClip "objects" in Frame 145
onClipEvent (enterFrame) { if ((_root.lvlpoints > 1995) && (_root.lvl == 8)) { _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 3)) { _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 9)) { _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 4)) { _root.lvlcurrent = 0; _root.player._x = 45; _root.player._y = 89; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 5)) { _root.lvlcurrent = 0; _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 1)) { _root.lvlcurrent = 0; _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 6)) { _root.lvlcurrent = 0; _root.player._x = 279; _root.player._y = 341; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 7)) { _root.player._x = 45; _root.player._y = 184; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 10)) { _root.player._x = 35; _root.player._y = 302; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 2)) { _root.player._x = 35; _root.player._y = 329; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 11)) { _root.lvlcurrent = 0; _root.player._x = 35; _root.player._y = 360; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 12)) { _root.player._x = 272; _root.player._y = 356; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 13)) { _root.player._x = 36; _root.player._y = 198; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 14)) { _root.lvlcurrent = 0.2; _root.player._x = 36; _root.player._y = 198; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 15)) { _root.lvlcurrent = 0; _root.player._x = 158; _root.player._y = 218; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 16)) { _root.lvlcurrent = 0; _root.player._x = 37; _root.player._y = 199; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 17)) { _root.lvlcurrent = 0; _root.player._x = 37; _root.player._y = 199; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 18)) { _root.lvlcurrent = 0; _root.player._x = 37; _root.player._y = 199; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 19)) { _root.lvlcurrent = 0; _root.player._x = 66; _root.player._y = 342; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 20)) { _root.lvlcurrent = 0; _root.player._x = 43; _root.player._y = 331; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 21)) { _root.lvlcurrent = 0; _root.player._x = 51; _root.player._y = 350; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 22)) { _root.lvlcurrent = 0; _root.player._x = 51; _root.player._y = 350; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 23)) { _root.lvlcurrent = 0.1; _root.player._x = 73; _root.player._y = 93; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 24)) { _root.lvlcurrent = 0; _root.player._x = 419; _root.player._y = 205; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 25)) { _root.lvlcurrent = 0; _root.player._x = 175; _root.player._y = 218; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 26)) { _root.lvlcurrent = 0; _root.player._x = 66; _root.player._y = 355; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 27)) { _root.lvlcurrent = 0; _root.player._x = 66; _root.player._y = 342; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 28)) { _root.lvlcurrent = 0; _root.player._x = 66; _root.player._y = 342; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 29)) { _root.lvlcurrent = 0; _root.player._x = 66; _root.player._y = 342; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 30)) { _root.lvlcurrent = 0; _root.player._x = 555; _root.player._y = 64; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } if ((_root.lvlpoints > 1995) && (_root.lvl == 31)) { _root.lvlcurrent = 0; _root.player._x = 154; _root.player._y = 64; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.player._rotation = 0; } this.gotoAndStop(_root.lvl); _x = (_x - ((_x - _root.groundx) / 4)); }
Instance of Symbol 237 MovieClip "player" in Frame 145
onClipEvent (load) { pbullettime = 10; u = 120; fired = false; alph = 100; hurting = false; this.swapDepths(81); i = 60; _x = _root.objects.pstart._x; _y = _root.objects.pstart._y; frict = 0.96; hitfrict = -1; xSpeed = 0; ySpeed = 0; angle = 270; accel = 0.3; time = 0; current = _root.lvlcurrent; } onClipEvent (enterFrame) { if (!_root.gamepause) { if ((Key.isDown(32) && (!fired)) && (pbullettime < 0)) { _root.playerbullet.duplicateMovieClip("pbullet" + u, u); _root["pbullet" + u]._x = _x; _root["pbullet" + u]._y = _y; _root["pbullet" + u]._rotation = _rotation; u++; pbullettime = 6; _root.shot.start(0, 1); fired = true; } if (u > 140) { u = 120; } pbullettime--; _alpha = (_alpha - ((_alpha - alph) / 14)); if ((time < 0) && (!_root.ground.newlvl)) { _root.wave.duplicateMovieClip("wave" + i, i); i++; time = 0.5; } if (i > 80) { i = 60; } if (hit && (!hurting)) { this.hurt._alpha = 100; hurting = true; } if (this.hurt._alpha < 10) { hurting = false; hit = false; } time--; angle = _rotation; if (angle < 0) { angle = angle + 360; } if (angle > 360) { angle = angle - 360; } if (Key.isDown(38)) { speed = accel; } else if (Key.isDown(40)) { speed = accel * -1; } else { speed = 0; } if (Key.isDown(37)) { _rotation = (_rotation - 5); } if (Key.isDown(39)) { _rotation = (_rotation + 5); } if (_x > 700) { xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x - 13, _y, true)) { _root.groundhit = true; _x = (_x + 5); xSpeed = xSpeed * hitfrict; } else if (_root.ground.hitTest(_x + 13, _y, true)) { _root.groundhit = true; _x = (_x - 5); xSpeed = xSpeed * hitfrict; } else if (_root.ground.hitTest(_x, _y - 13, true)) { _root.groundhit = true; ySpeed = ySpeed * hitfrict; _y = (_y + 5); } else if (_root.ground.hitTest(_x, _y + 13, true)) { _root.groundhit = true; ySpeed = ySpeed * hitfrict; _y = (_y - 5); } else { _root.groundhit = false; } if (_root.objects.hitTest(_x + 13, _y, true) && (this.hurt._alpha < 10)) { _root.objhit = true; } else if (_root.objects.hitTest(_x - 13, _y, true) && (this.hurt._alpha < 10)) { _root.objhit = true; } else if (_root.objects.hitTest(_x, _y + 13, true) && (this.hurt._alpha < 10)) { _root.objhit = true; } else if (_root.objects.hitTest(_x, _y - 13, true) && (this.hurt._alpha < 10)) { _root.objhit = true; } else { _root.objhit = false; } x = xSpeed + (speed * Math.sin((Math.PI/180) * angle)); y = ySpeed - (speed * Math.cos((Math.PI/180) * angle)); xSpeed = x; ySpeed = y; _x = (_x + xSpeed); _y = (_y + ySpeed); xSpeed = xSpeed * frict; ySpeed = ySpeed * frict; } }
Instance of Symbol 267 MovieClip "wave" in Frame 145
onClipEvent (load) { _rotation = (_root.player._rotation - 90); _alpha = 100; _x = _root.player._x; _y = _root.player._y; } onClipEvent (enterFrame) { _alpha = (_alpha - ((_alpha - 0) / 12)); }
Instance of Symbol 397 MovieClip "ground" in Frame 145
onClipEvent (load) { newlvl = false; } onClipEvent (enterFrame) { _x = (_x - ((_x - _root.groundx) / 4)); if (_x < -695) { _root.objects._x = 700; _root.ground._x = 700; _root.groundx = 700; } if (newlvl && (_x < 10)) { _root.player.alph = 100; newlvl = false; } this.gotoAndStop(_root.lvl); }
Instance of Symbol 404 MovieClip "end" in Frame 145
onClipEvent (load) { timer = 0; this.swapDepths(10000000213); } onClipEvent (enterFrame) { if (go && (!scoreset)) { _root.score = (_root.score = _root.score + _root.lvlpoints); scoreset = true; } _x = (_x - ((_x - _root.levelendx) / 4)); if (_x < -695) { _x = 700; _root.levelendx = 700; } if (((Key.isDown(32) && (timer < 0)) && (go)) && (_x < 10)) { _root.lvl = _root.lvl + 1; _root.lvlpoints = 2000; _root.ground.nextFrame(); _root.objects.nextFrame(); _root.ground.newlvl = true; _root.levelendx = -700; _root.player.xSpeed = 0; _root.player.ySpeed = 0; _root.groundx = 0; scoreset = false; _root.health = 100; go = false; timer = 50; } timer--; }
Instance of Symbol 437 MovieClip in Frame 145
onClipEvent (enterFrame) { if (_root.lvl == 31) { _y = -500; } }
Instance of Symbol 443 MovieClip in Frame 145
onClipEvent (load) { go = true; time = 0; } onClipEvent (enterFrame) { if (go && (_root.health <= 0)) { _root.goscreen._alpha = 100; _root.goscreen.go = true; _root.lvl = _root.lvl - 1; _root.player._x = -1000; time = 10; _root.health = 100; go = false; } } onClipEvent (enterFrame) { time--; if ((time < 0) && (go == false)) { _root.lvlpoints = 2000; go = true; _root.lvl = _root.lvl + 1; } }
Instance of Symbol 445 MovieClip "goscreen" in Frame 145
onClipEvent (load) { this.swapDepths(10000000000000); timer = 0; alphset = 0; go = false; } onClipEvent (enterFrame) { if (go) { timer = 10; go = false; } if (timer < 0) { _alpha = (_alpha - ((_alpha - alphset) / 14)); } timer--; }
Instance of Symbol 451 MovieClip in Frame 145
onClipEvent (enterFrame) { if (_root.lvlcurrent > 0) { this._visible = true; } else { this._visible = false; } }
Instance of Symbol 8 MovieClip "bar" in Symbol 13 MovieClip Frame 1
onClipEvent (load) { _yscale = 0; } onClipEvent (enterFrame) { done = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; _yscale = done; }
Symbol 26 Button
on (release) { _root.placeholdersound.setVolume(0); gotoAndStop (2); }
Symbol 27 Button
on (release) { _root.placeholdersound.setVolume(100); gotoAndStop (1); }
Symbol 37 MovieClip Frame 32
gotoAndPlay (1);
Symbol 47 MovieClip Frame 4
stop();
Symbol 49 MovieClip Frame 4
stop();
Symbol 50 Button
on (release) { _root.nextFrame(); }
Symbol 65 MovieClip Frame 54
stop();
Symbol 68 Button
on (release) { gotoAndStop ("story"); }
Symbol 69 Button
on (release) { gotoAndStop ("instructions"); }
Symbol 70 Button
on (release) { gotoAndStop ("credits"); }
Symbol 71 Button
on (release) { _root.getURL("http://www.armorgames.com", "_BLANK"); }
Symbol 72 Button
on (release) { _root.getURL("http://www.armorbot.com/mytable/?id=711", "_BLANK"); }
Symbol 81 Button
on (release) { gotoAndStop ("main"); }
Symbol 96 Button
on (release) { _root.menuMusic.stop(); _root.gotoAndStop("mainGame"); }
Symbol 112 MovieClip Frame 1
stop();
Symbol 112 MovieClip Frame 2
stop();
Symbol 122 MovieClip Frame 7
gotoAndPlay (1);
Symbol 128 MovieClip Frame 21
gotoAndPlay (1);
Symbol 158 MovieClip Frame 1
stop();
Symbol 171 MovieClip Frame 39
gotoAndPlay (1);
Symbol 188 MovieClip Frame 12
gotoAndPlay (1);
Symbol 189 MovieClip Frame 119
gotoAndPlay (1);
Symbol 195 MovieClip Frame 42
gotoAndPlay (1);
Instance of Symbol 195 MovieClip "bossHT" in Symbol 196 MovieClip Frame 1
onClipEvent (enterFrame) { _rotation = (_rotation + 3); }
Symbol 219 MovieClip Frame 1
stop();
Instance of Symbol 212 MovieClip in Symbol 219 MovieClip Frame 16
onClipEvent (load) { timer = 0; } onClipEvent (enterFrame) { if (this.hitTest(_root.ground.boss.boss)) { trace("KAPOOOWWWW"); _root.ground.boss.health = _root.ground.boss.health - 1; } if ((this.hitTest(_root.player) && (_root.groundhit)) && (timer < 0)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; timer = 10; } timer--; }
Symbol 219 MovieClip Frame 64
_root.ground.b1.used = false; _root.ground.b2.used = false; _root.ground.b3.used = false; _root.ground.b4.used = false; gotoAndStop (1);
Symbol 225 MovieClip Frame 1
stop();
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 1
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (load) { timer = 10; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.play(); } timer--; }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (enterFrame) { _name = "t1"; _root.portal(this, "t2"); }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 111 MovieClip "end" in Symbol 225 MovieClip Frame 3
onClipEvent (load) { _name = "end"; if ("end") { } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 141 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (load) { framespeed = 3; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 111 MovieClip "end" in Symbol 225 MovieClip Frame 4
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 4
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 4
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 4
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 0; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 158 MovieClip "slimeend" in Symbol 225 MovieClip Frame 5
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 173 MovieClip "toxic" in Symbol 225 MovieClip Frame 5
onClipEvent (load) { clvl = _root.lvl; health = 10; this.swapDepths(random(10000)); xSpeed = 3; ySpeed = 2; timer = 0; i = random(1000); size = 3; } onClipEvent (enterFrame) { if (_root.lvl != clvl) { this.removeMovieClip(); } cheight = _height; cwidth = _width; j = 120; while (j < 140) { if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health < 1)) { this.duplicateMovieClip("slime" + i, i); _parent["slime" + i]._x = _x; _parent["slime" + i]._y = _y; _parent["slime" + i]._xscale = _parent["slime" + i]._xscale - (_xscale / 2); _parent["slime" + i]._yscale = _parent["slime" + i]._yscale - (_yscale / 2); this._xscale = this._xscale - (_xscale / 2); this._yscale = this._yscale - (_yscale / 2); xSpeed = xSpeed * (-Math.random()); ySpeed = ySpeed * (-Math.random()); _parent["slime" + i].xSpeed = _parent["slime" + i].xSpeed * 3; _parent["slime" + i].ySpeed = _parent["slime" + i].ySpeed * 3; _parent["slime" + i].health = 10; this.health = 10; i++; _root.playerbullet._x = 1000; size--; xSpeed = xSpeed * 3; ySpeed = ySpeed * 3; _root["pbullet" + j].removeMovieClip(); } if (this.hitTest(_root["pbullet" + j]) && (_xscale == 25)) { _root["pbullet" + j].removeMovieClip(); _root.deadslimenum = _root.deadslimenum + 1; _root.objects.slimeend.nextFrame(); this.removeMovieClip(); } if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health >= 0)) { health = health - 1; _root["pbullet" + j].removeMovieClip(); } j++; } if (size == 1) { trace("SLIME DONE"); } if (_root.ground.hitTest(_x + (cwidth / 2), _y, true)) { _x = (_x - 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x - (cwidth / 2), _y, true)) { _x = (_x + 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x, _y + (cheight / 2), true)) { _y = (_y - 4); ySpeed = ySpeed * -1; } if (_root.ground.hitTest(_x, _y - (cheight / 2), true)) { _y = (_y + 4); ySpeed = ySpeed * -1; } trace(size); _root.size = size; _y = (_y + ySpeed); _x = (_x + xSpeed); } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } timer--; }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 6
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 6
onClipEvent (load) { framespeed = 5; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 6
onClipEvent (load) { framespeed = 5; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 181 MovieClip in Symbol 225 MovieClip Frame 7
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 181 MovieClip in Symbol 225 MovieClip Frame 7
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 181 MovieClip in Symbol 225 MovieClip Frame 7
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 181 MovieClip in Symbol 225 MovieClip Frame 7
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 111 MovieClip "end" in Symbol 225 MovieClip Frame 8
onClipEvent (load) { _name = "end"; if ("end") { } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 8
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 8
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 181 MovieClip in Symbol 225 MovieClip Frame 8
onClipEvent (load) { framespeed = 1.5; timer = 0; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 9
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 141 MovieClip in Symbol 225 MovieClip Frame 9
onClipEvent (load) { framespeed = 4; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 112 MovieClip in Symbol 225 MovieClip Frame 9
/* no clip actions */
Instance of Symbol 141 MovieClip in Symbol 225 MovieClip Frame 9
onClipEvent (load) { framespeed = 4; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (enterFrame) { _name = "t1"; _root.portal(this, "t2"); }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 192 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { this.swapDepths(random(1000000)); hit = false; xspeed = 0; } onClipEvent (enterFrame) { if ((!hit) && (_root.player._x < _x)) { xspeed = -0.1; } if ((!hit) && (_root.player._x > _x)) { xspeed = 0.1; } if ((!hit) && (_root.player._y < _y)) { yspeed = -0.1; } if ((!hit) && (_root.player._y > _y)) { yspeed = 0.1; } if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { time = 100; hit = true; } if (time > 0) { _root.player.xSpeed = _root.player.xSpeed + xspeed; _root.player.ySpeed = _root.player.ySpeed + yspeed; } time--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 189 MovieClip in Symbol 225 MovieClip Frame 10
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this.blade._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.blade.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.blade.hitTest(_root.player) && (_root.objhit)) { this.blade.stop(); } else if (_root.gamepause) { this.blade.stop(); } else { this.blade.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 11
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 14
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 15
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 158 MovieClip "slimeend" in Symbol 225 MovieClip Frame 15
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 173 MovieClip "toxic" in Symbol 225 MovieClip Frame 15
onClipEvent (load) { clvl = _root.lvl; health = 10; this.swapDepths(random(10000)); xSpeed = 3; ySpeed = 2; timer = 0; i = random(1000); size = 3; } onClipEvent (enterFrame) { if (_root.lvl != clvl) { this.removeMovieClip(); } cheight = _height; cwidth = _width; j = 120; while (j < 140) { if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health < 1)) { this.duplicateMovieClip("slime" + i, i); _parent["slime" + i]._x = _x; _parent["slime" + i]._y = _y; _parent["slime" + i]._xscale = _parent["slime" + i]._xscale - (_xscale / 2); _parent["slime" + i]._yscale = _parent["slime" + i]._yscale - (_yscale / 2); this._xscale = this._xscale - (_xscale / 2); this._yscale = this._yscale - (_yscale / 2); xSpeed = xSpeed * (-Math.random()); ySpeed = ySpeed * (-Math.random()); _parent["slime" + i].xSpeed = _parent["slime" + i].xSpeed * 3; _parent["slime" + i].ySpeed = _parent["slime" + i].ySpeed * 3; _parent["slime" + i].health = 10; this.health = 10; i++; _root.playerbullet._x = 1000; size--; xSpeed = xSpeed * 3; ySpeed = ySpeed * 3; _root["pbullet" + j].removeMovieClip(); } if (this.hitTest(_root["pbullet" + j]) && (_xscale == 25)) { _root["pbullet" + j].removeMovieClip(); _root.deadslimenum = _root.deadslimenum + 1; _root.objects.slimeend.nextFrame(); this.removeMovieClip(); } if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health >= 0)) { health = health - 1; _root["pbullet" + j].removeMovieClip(); } j++; } if (size == 1) { trace("SLIME DONE"); } if (_root.ground.hitTest(_x + (cwidth / 2), _y, true)) { _x = (_x - 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x - (cwidth / 2), _y, true)) { _x = (_x + 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x, _y + (cheight / 2), true)) { _y = (_y - 4); ySpeed = ySpeed * -1; } if (_root.ground.hitTest(_x, _y - (cheight / 2), true)) { _y = (_y + 4); ySpeed = ySpeed * -1; } trace(size); _root.size = size; _y = (_y + ySpeed); _x = (_x + xSpeed); } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } timer--; }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 16
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 17
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 18
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 19
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 19
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 20
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (enterFrame) { _name = "t1"; _root.portal(this, "t2"); }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 0; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 0; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 0; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 157 MovieClip in Symbol 225 MovieClip Frame 21
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 0; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (enterFrame) { _name = "t1"; _root.portal(this, "t2"); }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 23
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (enterFrame) { _name = "h2"; }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (enterFrame) { _name = "p2"; }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (enterFrame) { _name = "p1"; _root.portal(this, "p2"); }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (load) { framespeed = 5; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (load) { framespeed = 5; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 24
onClipEvent (enterFrame) { _name = "h1"; _root.portal(this, "h2"); }
Instance of Symbol 158 MovieClip "slimeend" in Symbol 225 MovieClip Frame 25
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 173 MovieClip "toxic" in Symbol 225 MovieClip Frame 25
onClipEvent (load) { clvl = _root.lvl; health = 10; this.swapDepths(random(10000)); xSpeed = 3; ySpeed = 2; timer = 0; i = random(1000); size = 3; } onClipEvent (enterFrame) { if (_root.lvl != clvl) { this.removeMovieClip(); } cheight = _height; cwidth = _width; j = 120; while (j < 140) { if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health < 1)) { this.duplicateMovieClip("slime" + i, i); _parent["slime" + i]._x = _x; _parent["slime" + i]._y = _y; _parent["slime" + i]._xscale = _parent["slime" + i]._xscale - (_xscale / 2); _parent["slime" + i]._yscale = _parent["slime" + i]._yscale - (_yscale / 2); this._xscale = this._xscale - (_xscale / 2); this._yscale = this._yscale - (_yscale / 2); xSpeed = xSpeed * (-Math.random()); ySpeed = ySpeed * (-Math.random()); _parent["slime" + i].xSpeed = _parent["slime" + i].xSpeed * 3; _parent["slime" + i].ySpeed = _parent["slime" + i].ySpeed * 3; _parent["slime" + i].health = 10; this.health = 10; i++; _root.playerbullet._x = 1000; size--; xSpeed = xSpeed * 3; ySpeed = ySpeed * 3; _root["pbullet" + j].removeMovieClip(); } if (this.hitTest(_root["pbullet" + j]) && (_xscale == 25)) { _root["pbullet" + j].removeMovieClip(); _root.deadslimenum = _root.deadslimenum + 1; _root.objects.slimeend.nextFrame(); this.removeMovieClip(); } if ((this.hitTest(_root["pbullet" + j]) && (_xscale >= 50)) && (health >= 0)) { health = health - 1; _root["pbullet" + j].removeMovieClip(); } j++; } if (size == 1) { trace("SLIME DONE"); } if (_root.ground.hitTest(_x + (cwidth / 2), _y, true)) { _x = (_x - 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x - (cwidth / 2), _y, true)) { _x = (_x + 4); xSpeed = xSpeed * -1; } if (_root.ground.hitTest(_x, _y + (cheight / 2), true)) { _y = (_y - 4); ySpeed = ySpeed * -1; } if (_root.ground.hitTest(_x, _y - (cheight / 2), true)) { _y = (_y + 4); ySpeed = ySpeed * -1; } trace(size); _root.size = size; _y = (_y + ySpeed); _x = (_x + xSpeed); } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } timer--; }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 25
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 26
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation + 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 196 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; _rotation = (_rotation - 3); }
Instance of Symbol 141 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 141 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 3; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 129 MovieClip in Symbol 225 MovieClip Frame 27
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 1; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.objhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.objhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 28
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 112 MovieClip "end" in Symbol 225 MovieClip Frame 30
onClipEvent (load) { _name = "end"; if ("end") { this.gotoAndStop(2); } } onClipEvent (enterFrame) { if (_root.player.hitTest(this) && (_root.ground.boss.health <= 0)) { _root.end.go = true; _root.levelendx = 0; _root.player.alph = 0; _root.player._y = -800; _root.groundx = -700; _root.craftx = 0; } if (_root.ground.boss.health > 0) { this._visible = false; } else { _visible = true; } }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 30
onClipEvent (enterFrame) { _name = "t1"; _root.portal(this, "t2"); }
Instance of Symbol 199 MovieClip in Symbol 225 MovieClip Frame 30
onClipEvent (enterFrame) { _name = "t2"; }
Instance of Symbol 131 MovieClip in Symbol 225 MovieClip Frame 30
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 140 MovieClip in Symbol 225 MovieClip Frame 30
onClipEvent (load) { rand = random(100000); hit = false; } onClipEvent (enterFrame) { if ((this.hitTest(_root.player) && (_root.objhit)) && (!hit)) { this.swapDepths(rand); _root.expl(this, _y, _x, false); hit = true; trace("aasdas"); } }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player.removeMovieClip(); _root.gotoAndStop("main"); } }
Instance of Symbol 111 MovieClip in Symbol 225 MovieClip Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { ab20_09 = new LoadVars(); ab20_09.z = _root.pname; ab20_09.x = _root.score; ab20_09.c = 711; ab20_09.v = "TMXSXV"; ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST"); _root.getURL("http://www.armorbot.com/mytable/?id=711", "_BLANK"); _root.player.removeMovieClip(); _root.gotoAndStop("main"); } }
Instance of Symbol 236 MovieClip "hurt" in Symbol 237 MovieClip Frame 1
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { _alpha = (_alpha - ((_alpha - 0) / 5)); }
Symbol 265 MovieClip Frame 44
stop(); this.removeMovieClip();
Symbol 267 MovieClip Frame 13
stop();
Symbol 277 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 283 MovieClip Frame 1
gotoAndStop(2 + random(9));
Symbol 288 MovieClip Frame 1
gotoAndStop(2 + random(9));
Symbol 292 MovieClip Frame 1
gotoAndStop(2 + random(9));
Symbol 293 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 293 MovieClip Frame 2
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 293 MovieClip Frame 3
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 297 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 301 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 306 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 313 MovieClip Frame 1
stop();
Symbol 313 MovieClip Frame 4
_root.health = _root.health - 15; this.removeMovieClip();
Symbol 318 MovieClip Frame 1
stop();
Instance of Symbol 313 MovieClip "bullet" in Symbol 319 MovieClip Frame 1
onClipEvent (load) { speed = 5; _rotation = (_parent.turret._rotation + 90); } onClipEvent (enterFrame) { x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; _x = (_x + x); _y = (_y + y); if (_root.player.hitTest(_x + _parent._x, _y + _parent._y, true)) { trace("PEWPEW"); _root.player.hit = true; this.play(); } }
Instance of Symbol 318 MovieClip "turret" in Symbol 319 MovieClip Frame 1
onClipEvent (load) { timer = 50; i = 1; this.swapDepths(10000); } onClipEvent (enterFrame) { if (!_root.gamepause) { if (timer < 0) { _parent.bullet.duplicateMovieClip("bullet" + i, i); _parent["bullet" + i]._x = _x; _parent["bullet" + i]._y = _y; _parent["bullet" + i]._rotation = _rotation + 90; this.play(); i++; timer = maxTime; } } timer--; }
Symbol 332 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 25
stop();
Symbol 340 MovieClip Frame 1
stop();
Symbol 340 MovieClip Frame 20
stop();
Symbol 340 MovieClip Frame 40
stop();
Symbol 340 MovieClip Frame 60
stop();
Symbol 340 MovieClip Frame 80
stop();
Symbol 341 MovieClip Frame 1
stop();
Symbol 341 MovieClip Frame 120
gotoAndStop (1);
Symbol 350 MovieClip Frame 21
gotoAndStop (1);
Symbol 369 MovieClip Frame 74
_root.ground.boss.timer = _root.ground.boss.maxTime; gotoAndStop (1);
Instance of Symbol 369 MovieClip "animation" in Symbol 370 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.ground.boss.health > 0) { this.play(); } else { this.stop(); } }
Instance of Symbol 350 MovieClip "boss" in Symbol 371 MovieClip Frame 1
onClipEvent (enterFrame) { trace(_rotation); }
Instance of Symbol 370 MovieClip "laser" in Symbol 371 MovieClip Frame 1
onClipEvent (enterFrame) { _x = _parent.boss._x; _y = _parent.boss._y; } onClipEvent (enterFrame) { rand = random(4); if (rand == 1) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } }
Instance of Symbol 350 MovieClip "boss" in Symbol 371 MovieClip Frame 330
onClipEvent (enterFrame) { trace(_rotation); }
Symbol 384 MovieClip Frame 44
stop(); this.removeMovieClip();
Instance of Symbol 384 MovieClip "explosion" in Symbol 385 MovieClip Frame 1
onClipEvent (enterFrame) { this.stop(); if (_root.ground.boss.health < 0) { this.play(); } }
Instance of Symbol 384 MovieClip "explosion" in Symbol 385 MovieClip Frame 1
onClipEvent (enterFrame) { this.stop(); if (_root.ground.boss.health < 0) { this.play(); } }
Instance of Symbol 384 MovieClip "explosion" in Symbol 385 MovieClip Frame 1
onClipEvent (enterFrame) { this.stop(); if (_root.ground.boss.health < 0) { this.play(); } }
Symbol 397 MovieClip Frame 1
stop();
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 5
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 12
onClipEvent (enterFrame) { this.turret.maxTime = 40; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 12
onClipEvent (enterFrame) { this.turret.maxTime = 40; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 5); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 5); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 5); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 5); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y - 2); if (_y < 0) { _y = (400 + _height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y - 2); if (_y < 0) { _y = (400 + _height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y - 2); if (_y < 0) { _y = (400 + _height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y - 2); if (_y < 0) { _y = (400 + _height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 321 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { _y = (_y + 2); if (_y > 400) { _y = (-_height); } }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 13
onClipEvent (enterFrame) { this.turret.maxTime = 30; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 15
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 15
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation + 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation + 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation + 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation + 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 16
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 327 MovieClip in Symbol 397 MovieClip Frame 22
onClipEvent (load) { framespeed = 1; timer = 10; maxframes = this._framesloaded; cframe = 122; spinning = true; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if ((this.hitTest(_root.player) && (_root.groundhit)) && (spinning)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; trace(this.spinning); }
Instance of Symbol 157 MovieClip in Symbol 397 MovieClip Frame 23
onClipEvent (load) { framespeed = 2; timer = 10; maxframes = this._framesloaded; cframe = 75; } onClipEvent (enterFrame) { rand = random(4); if (timer < 0) { if (rand == 1) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 2) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = -6; timer = 10; } } if (rand == 4) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = 6; _root.player.ySpeed = 6; timer = 10; } } if (rand == 1) { if (this.hitTest(_root.player) && (_root.groundhit)) { _root.player.hit = true; _root.spawnexpl(_root.player._x, _root.player._y); _root.player.xSpeed = -6; _root.player.ySpeed = 6; timer = 10; } } } if (this.hitTest(_root.player) && (_root.groundhit)) { this.stop(); } else if (_root.gamepause) { this.stop(); } else { this.gotoAndStop(cframe); } if (cframe > maxframes) { cframe = 1; } cframe = cframe + framespeed; timer--; }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 24
onClipEvent (enterFrame) { _rotation = (_rotation - 2.5); }
Instance of Symbol 326 MovieClip in Symbol 397 MovieClip Frame 24
onClipEvent (enterFrame) { _rotation = (_rotation + 2.5); }
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 25
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 25
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 297 MovieClip in Symbol 397 MovieClip Frame 25
onClipEvent (enterFrame) { j = 120; while (j < 140) { if (this.hitTest(_root["pbullet" + j])) { _root["pbullet" + j].removeMovieClip(); } j++; } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 26
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.gate.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 338 MovieClip "gate" in Symbol 397 MovieClip Frame 26
onClipEvent (load) { this.gotoAndStop(1); this.stop(); }
Instance of Symbol 340 MovieClip "gate2" in Symbol 397 MovieClip Frame 27
onClipEvent (load) { this.stop(); }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 27
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 27
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 27
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 27
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.gate.play(); _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 338 MovieClip "gate" in Symbol 397 MovieClip Frame 27
onClipEvent (load) { this.stop(); }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 28
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if (((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) && (_root.ground.gate2._currentframe == 1)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 28
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if (((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) && (_root.ground.gate2._currentframe == 1)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 332 MovieClip in Symbol 397 MovieClip Frame 28
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if (((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) && (_root.ground.gate2._currentframe == 1)) { _parent.gate2.play(); used = true; } if (used) { this.gotoAndStop(2); } }
Instance of Symbol 342 MovieClip in Symbol 397 MovieClip Frame 29
onClipEvent (enterFrame) { _rotation = (_rotation + 1); }
Instance of Symbol 342 MovieClip in Symbol 397 MovieClip Frame 29
onClipEvent (enterFrame) { _rotation = (_rotation - 0.5); }
Instance of Symbol 343 MovieClip in Symbol 397 MovieClip Frame 29
onClipEvent (enterFrame) { _rotation = (_rotation + 0.25); }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 29
onClipEvent (enterFrame) { this.turret.maxTime = 40; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 29
onClipEvent (enterFrame) { this.turret.maxTime = 40; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Instance of Symbol 371 MovieClip "boss" in Symbol 397 MovieClip Frame 30
onClipEvent (load) { timer = 0; maxTime = 100; health = 10; } onClipEvent (enterFrame) { if ((timer > 0) && (_root.ground.boss.health > 0)) { this.boss.gotoAndStop(1); this.laser.animation.gotoAndStop(1); this.laser._rotation = 57.3 * Math.atan2(_root.player._y - this.laser._y, _root.player._x - this.laser._x); } if ((timer < 20) && (timer > 0)) { this.boss.play(); } if ((timer < 0) && (_root.ground.boss.health > 0)) { this.laser.animation.play(); } if (health < 0) { _root.health = 100; this.boss.laser._x = -100000; this.stop(); } timer = timer - 1; trace(health); }
Instance of Symbol 332 MovieClip "b4" in Symbol 397 MovieClip Frame 30
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.laser4.play(); used = true; } if (used) { this.gotoAndStop(2); } if (!used) { this.gotoAndStop(1); } }
Instance of Symbol 332 MovieClip "b3" in Symbol 397 MovieClip Frame 30
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.laser3.play(); used = true; } if (used) { this.gotoAndStop(2); } if (!used) { this.gotoAndStop(1); } }
Instance of Symbol 332 MovieClip "b1" in Symbol 397 MovieClip Frame 30
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.laser1.play(); used = true; } if (used) { this.gotoAndStop(2); } if (!used) { this.gotoAndStop(1); } }
Instance of Symbol 332 MovieClip "b2" in Symbol 397 MovieClip Frame 30
onClipEvent (load) { used = false; } onClipEvent (enterFrame) { if ((_root.player.hitTest(this) && (_root.groundhit)) && (!used)) { _parent.laser2.play(); used = true; } if (used) { this.gotoAndStop(2); } if (!used) { this.gotoAndStop(1); } }
Instance of Symbol 385 MovieClip in Symbol 397 MovieClip Frame 30
onClipEvent (enterFrame) { if (_root.ground.boss.health <= 0) { this._visible = true; } else { this._visible = false; } _x = _root.ground.boss.boss._x; _y = _root.ground.boss.boss._y; }
Instance of Symbol 386 MovieClip in Symbol 397 MovieClip Frame 30
onClipEvent (enterFrame) { this._xscale = this._xscale - ((_xscale - _root.ground.boss.health) / 14); }
Instance of Symbol 319 MovieClip in Symbol 397 MovieClip Frame 32
onClipEvent (enterFrame) { this.turret.maxTime = 80; this.turret.rotset = 57.3 * Math.atan2(_root.player._y - _y, _root.player._x - _x); this.turret._rotation = this.turret._rotation - ((this.turret._rotation - this.turret.rotset) / 14); }
Symbol 412 MovieClip Frame 1
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 412 MovieClip Frame 2
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 412 MovieClip Frame 3
stop(); if ((_root.lvl <= 10) && (_root.lvl > 0)) { gotoAndStop (1); } if ((_root.lvl <= 20) && (_root.lvl > 10)) { gotoAndStop (2); } if ((_root.lvl <= 30) && (_root.lvl > 20)) { gotoAndStop (3); }
Symbol 419 MovieClip Frame 1
gotoAndStop(2 + random(7));
Symbol 426 Button
on (release) { _root.health = 0; }
Symbol 430 Button
on (release) { _root._quality = "LOW"; gotoAndStop (2); }
Symbol 431 Button
on (release) { _root._quality = "MEDIUM"; gotoAndStop (1); }
Instance of Symbol 432 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (load) { this.stop(); }
Instance of Symbol 28 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (load) { this.stop(); }
Symbol 451 MovieClip Frame 1
stop();

Library Items

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

Instance Names

"_root.pname"Frame 140Symbol 42 EditableText
"playerbullet"Frame 145Symbol 106 MovieClip
"objects"Frame 145Symbol 225 MovieClip
"player"Frame 145Symbol 237 MovieClip
"explosion"Frame 145Symbol 265 MovieClip
"wave"Frame 145Symbol 267 MovieClip
"ground"Frame 145Symbol 397 MovieClip
"end"Frame 145Symbol 404 MovieClip
"goscreen"Frame 145Symbol 445 MovieClip
"bar"Symbol 13 MovieClip Frame 1Symbol 8 MovieClip
"blade"Symbol 189 MovieClip Frame 1Symbol 188 MovieClip
"bossHT"Symbol 196 MovieClip Frame 1Symbol 195 MovieClip
"end"Symbol 225 MovieClip Frame 1Symbol 112 MovieClip
"end"Symbol 225 MovieClip Frame 3Symbol 111 MovieClip
"end"Symbol 225 MovieClip Frame 4Symbol 111 MovieClip
"slimeend"Symbol 225 MovieClip Frame 5Symbol 158 MovieClip
"toxic"Symbol 225 MovieClip Frame 5Symbol 173 MovieClip
"end"Symbol 225 MovieClip Frame 6Symbol 112 MovieClip
"end"Symbol 225 MovieClip Frame 8Symbol 111 MovieClip
"end"Symbol 225 MovieClip Frame 9Symbol 112 MovieClip
"slimeend"Symbol 225 MovieClip Frame 15Symbol 158 MovieClip
"toxic"Symbol 225 MovieClip Frame 15Symbol 173 MovieClip
"end"Symbol 225 MovieClip Frame 16Symbol 112 MovieClip
"end"Symbol 225 MovieClip Frame 19Symbol 112 MovieClip
"slimeend"Symbol 225 MovieClip Frame 25Symbol 158 MovieClip
"toxic"Symbol 225 MovieClip Frame 25Symbol 173 MovieClip
"end"Symbol 225 MovieClip Frame 26Symbol 112 MovieClip
"end"Symbol 225 MovieClip Frame 30Symbol 112 MovieClip
"hurt"Symbol 237 MovieClip Frame 1Symbol 236 MovieClip
"bullet"Symbol 319 MovieClip Frame 1Symbol 313 MovieClip
"turret"Symbol 319 MovieClip Frame 1Symbol 318 MovieClip
"bossHT"Symbol 350 MovieClip Frame 1Symbol 195 MovieClip
"animation"Symbol 370 MovieClip Frame 1Symbol 369 MovieClip
"boss"Symbol 371 MovieClip Frame 1Symbol 350 MovieClip
"laser"Symbol 371 MovieClip Frame 1Symbol 370 MovieClip
"boss"Symbol 371 MovieClip Frame 150Symbol 350 MovieClip
"boss"Symbol 371 MovieClip Frame 330Symbol 350 MovieClip
"explosion"Symbol 385 MovieClip Frame 1Symbol 384 MovieClip
"explosion"Symbol 385 MovieClip Frame 1Symbol 384 MovieClip
"explosion"Symbol 385 MovieClip Frame 1Symbol 384 MovieClip
"gate"Symbol 397 MovieClip Frame 26Symbol 338 MovieClip
"gate2"Symbol 397 MovieClip Frame 27Symbol 340 MovieClip
"gate"Symbol 397 MovieClip Frame 27Symbol 338 MovieClip
"gate2"Symbol 397 MovieClip Frame 28Symbol 341 MovieClip
"boss"Symbol 397 MovieClip Frame 30Symbol 371 MovieClip
"b4"Symbol 397 MovieClip Frame 30Symbol 332 MovieClip
"b3"Symbol 397 MovieClip Frame 30Symbol 332 MovieClip
"b1"Symbol 397 MovieClip Frame 30Symbol 332 MovieClip
"b2"Symbol 397 MovieClip Frame 30Symbol 332 MovieClip
"laser1"Symbol 397 MovieClip Frame 30Symbol 219 MovieClip
"laser2"Symbol 397 MovieClip Frame 30Symbol 219 MovieClip
"laser4"Symbol 397 MovieClip Frame 30Symbol 219 MovieClip
"laser3"Symbol 397 MovieClip Frame 30Symbol 219 MovieClip

Special Tags

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

Labels

"loader"Frame 140
"main"Frame 141
"instructions"Frame 142
"credits"Frame 143
"story"Frame 144
"mainGame"Frame 145
"jungle"Symbol 277 MovieClip Frame 1
"rock"Symbol 277 MovieClip Frame 2
"waste"Symbol 277 MovieClip Frame 3
"Jungle"Symbol 293 MovieClip Frame 1
"Rock"Symbol 293 MovieClip Frame 2
"Waste"Symbol 293 MovieClip Frame 3
"jungle"Symbol 297 MovieClip Frame 1
"Rock"Symbol 297 MovieClip Frame 2
"Waste"Symbol 297 MovieClip Frame 3
"jungle"Symbol 301 MovieClip Frame 1
"rock"Symbol 301 MovieClip Frame 2
"waste"Symbol 301 MovieClip Frame 3
"jungle"Symbol 306 MovieClip Frame 1
"rock"Symbol 306 MovieClip Frame 2
"waste"Symbol 306 MovieClip Frame 3
"jungle"Symbol 412 MovieClip Frame 1
"rock"Symbol 412 MovieClip Frame 2
"waste"Symbol 412 MovieClip Frame 3
"current"Symbol 451 MovieClip Frame 1
"nocurrent"Symbol 451 MovieClip Frame 2

Dynamic Text Variables

_root.pnameSymbol 42 EditableText"Insert"
_root.scoreSymbol 224 EditableText"YOUR SCORE:"
_root.scoreSymbol 403 EditableText""
_root.texthealthSymbol 421 EditableText"Health: 100%"
_root.currentlevelSymbol 434 EditableText"15/30"
_root.lvlpointsSymbol 436 EditableText"2000"




http://swfchan.com/5/23694/info.shtml
Created: 26/5 -2019 01:30:53 Last modified: 26/5 -2019 01:30:53 Server time: 12/05 -2024 09:15:17