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

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

Squareman 2.swf

This is the info page for
Flash #25913

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


Text
<p align="left"></p>

fps

Loading...

Created by Nick Crockett 2007

Loaded!

Created by Nick Crockett 2007

Sponsored by thegamehomepage

Sponsored by thegamehomepage

Sponsored by thegamehomepage

Sponsored by thegamehomepage

this game is avaliable for free download at
thegamehomepage

this game is avaliable for free download at
thegamehomepage

this game is avaliable for free download at
thegamehomepage

this game is avaliable for free download at
thegamehomepage

start game

start game

start game

start game

Squareman 2

your high score:

100000

Walk with the arrow Keys

Jump with the arrow
Keys

Hop onto a
trampoline to
jump higher

Most platforms do not allow
you to jump through them.

Platforms with
lighter outlines
can be jumped
through

avoid things like these

hit the checkered flag to
proceed to the next level

Collect these for points

these will give
you extra lives

Press Space to
display your points
health and lives

10

100000

if you get
crushed you
will lose a life

be careful not
to fall!

Created by Nick Crockett 2007

Your score:

TIme BONUS

1000

Play Again?

Play Again?

Play Again?

Your final score:

100000

Lives Bonus

Lives Lost

+

-

/

10000

x

+

10000

10000

10000

100

x

Points

+

10000

your high score:

100000

Thanks for Playing!

play more games

play more games

play more games

Created by Nick Crockett 2007

Game OVER!

ActionScript [AS1/AS2]

Frame 1
function menuChoiceOne() { getURL ("http://www.thegamehomepage.com/", "_blank"); } _root._x = 0; _root._y = 0; stop(); NewMenu = new ContextMenu(); NewMenu.hideBuiltInItems(); NewMenu.customItems.push(new ContextMenuItem("Visit The Game Homepage", menuChoiceOne)); this.menu = NewMenu;
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; _xscale = (_xscale - (Math.round(PercentLoaded + _xscale) / 30)); if (this.PercentLoaded == 100) { _root.nextFrame(); } }
Frame 2
SMDATA = SharedObject.getLocal("SMDATA"); if (SMDATA.data.hiscore == null) { _root.hiscore = 0; } else { _root.hiscore = SMDATA.data.hiscore; } stop();
Instance of Symbol 13 MovieClip in Frame 2
onClipEvent (enterFrame) { }
Frame 3
var MUSA = new Sound(blankSym); stop(); lives = 5; points = 0; liveslost = 0;
Instance of Symbol 42 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 53 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 70 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 78 MovieClip "you" in Frame 3
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); }
Instance of Symbol 82 MovieClip "blankSym" in Frame 3
onClipEvent (load) { T = 0; _root.sec = 0; } onClipEvent (enterFrame) { if (_root.lives == -1) { _root.stopAllSounds(); _root.lives = 5; _root.gotoAndStop("gameOver"); } T = T + 1; if (T == 30) { _root.sec = _root.sec + 1; T = 0; } }
Frame 4
HP = 7; Hcount = 0; nextFrame();
Frame 5
stop();
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 67 MovieClip in Frame 5
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 5
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 5
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 5
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 5
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 96 MovieClip "health" in Frame 5
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Instance of Symbol 78 MovieClip "you" in Frame 5
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 5
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Frame 6
HP = 7; Hcount = 0; nextFrame();
Frame 7
stop();
Instance of Symbol 44 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 67 MovieClip in Frame 7
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 7
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 7
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 7
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 65 MovieClip in Frame 7
onClipEvent (enterFrame) { if ((_root.you._x < 300) && (_root.you._y < -50)) { play(); } }
Instance of Symbol 65 MovieClip in Frame 7
onClipEvent (enterFrame) { if ((_root.you._x < 300) && (_root.you._y < -50)) { play(); } }
Instance of Symbol 67 MovieClip in Frame 7
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 15; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 81 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; _root.health._alpha = 100; this.nextFrame(); } }
Instance of Symbol 78 MovieClip "you" in Frame 7
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 7
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 7
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 8
HP = 7; Hcount = 0; nextFrame();
Frame 9
stop();
Instance of Symbol 44 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 67 MovieClip in Frame 9
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 67 MovieClip in Frame 9
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 78 MovieClip "you" in Frame 9
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 9
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 9
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 10
HP = 7; Hcount = 0; nextFrame();
Frame 11
stop();
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 67 MovieClip in Frame 11
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true)) { left = false; R = true; } else { left = true; } if (R == true) { _y = (_y + 2); } else { _y = (_y - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 67 MovieClip in Frame 11
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 78 MovieClip "you" in Frame 11
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 119 MovieClip in Frame 11
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 11
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 11
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 12
HP = 7; Hcount = 0; nextFrame();
Frame 13
stop();
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.health._alpha = 100; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 30; play(); } }
Instance of Symbol 67 MovieClip in Frame 13
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 67 MovieClip in Frame 13
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 81 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; _root.health._alpha = 100; this.nextFrame(); } }
Instance of Symbol 78 MovieClip "you" in Frame 13
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 119 MovieClip in Frame 13
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 119 MovieClip in Frame 13
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 119 MovieClip in Frame 13
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 13
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 13
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 14
HP = 7; Hcount = 0; nextFrame();
Frame 15
stop();
Instance of Symbol 44 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; _root.health._alpha = 100; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 53 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 53 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 78 MovieClip "you" in Frame 15
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms.hitTest(this._x, this._y + 8, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 7, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 6, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 5, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 4, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 3, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 2, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 1, true)) { this._y = this._y - 1; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 119 MovieClip in Frame 15
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 15
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 15
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 16
HP = 7; Hcount = 0; nextFrame();
Frame 17
stop();
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; _root.health._alpha = 100; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 65 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.you._x < 275) { play(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 78 MovieClip "you" in Frame 17
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms.hitTest(this._x, this._y + 8, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 7, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 6, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 5, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 4, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 3, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 2, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 1, true)) { this._y = this._y - 1; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 20; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 20; } }
Instance of Symbol 119 MovieClip in Frame 17
onClipEvent (load) { R = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 20; } }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 17
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 17
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 18
HP = 7; Hcount = 0; nextFrame();
Frame 19
stop();
Instance of Symbol 44 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 44 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.lives = _root.lives + 1; _root.points = _root.points + 100; _root.PointCounter._alpha = 100; _root.health._alpha = 100; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 42 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 70 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 53 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 53 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 65 MovieClip in Frame 19
onClipEvent (enterFrame) { if (_root.you._x < 275) { play(); } }
Instance of Symbol 53 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 53 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 67 MovieClip in Frame 19
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 19
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 19
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 67 MovieClip in Frame 19
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 53 MovieClip in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 78 MovieClip "you" in Frame 19
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms.hitTest(this._x, this._y + 8, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 7, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 6, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 5, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 4, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 3, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 2, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 1, true)) { this._y = this._y - 1; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 98 MovieClip "PointCounter" in Frame 19
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } points = _root.points; _x = _root.you._x; _y = _root.you._y; if (_alpha > 0) { _alpha = (_alpha - 0.5); } }
Instance of Symbol 96 MovieClip "health" in Frame 19
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 20
HP = 7; stopAllSounds(); Hcount = 0; nextFrame(); BHP = 7;
Frame 21
stop(); _root.C = 0;
Instance of Symbol 172 MovieClip "boss" in Frame 21
onClipEvent (enterFrame) { if (Aiming == true) { _rotation = (Math.atan2(_root.you._y - _y, _root.you._x - _x) * 57.2957795130823); } if (_root.bossBeat == true) { _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); } }
Instance of Symbol 174 MovieClip "Bullet" in Frame 21
onClipEvent (load) { speed = 5; if (this._name != "bullet") { this._x = _root.boss._x; this._y = _root.boss._y; this._rotation = _root.boss._rotation; XDIR = Math.cos(_rotation * (Math.PI/180)) * speed; YDIR = Math.sin(_rotation * (Math.PI/180)) * speed; this.bossdamage = false; } } onClipEvent (enterFrame) { if (this._name != "bullet") { this._x = this._x + XDIR; this._y = this._y + YDIR; if (_root.RE.hitTest(this._x, this._y + 10, true)) { this.YDIR = this.YDIR * -1; } if (_root.RE.hitTest(this._x + 10, this._y, true) || (_root.RE.hitTest(this._x - 10, this._y, true))) { this.XDIR = this.XDIR * -1; this.bossdamage = true; } if (bossdamage == true) { if (this.hitTest(_root.boss)) { _root.Bosshealth._alpha = 100; this.removeMovieClip(); } } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; this.removeMovieClip(); } } }
Instance of Symbol 177 MovieClip "Bosshealth" in Frame 21
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { _x = _root.boss._x; _y = _root.boss._y; if (_alpha == 100) { _root.BHP = _root.BHP - 1; } gotoAndStop(_root.BHP); if (_alpha > 0) { _alpha = (_alpha - 0.1); } if (_root.BHP == 1) { _root.boss.gotoAndStop("dead"); _root.bossBeat = true; } }
Instance of Symbol 67 MovieClip in Frame 21
onClipEvent (load) { R = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x + 5, this._y, true)) { right = false; R = false; } else { right = true; } if (_root.platforms.hitTest(this._x - 5, this._y, true)) { left = false; R = true; } else { left = true; } if (R == true) { _x = (_x + 2); } else { _x = (_x - 2); } if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 78 MovieClip "you" in Frame 21
onClipEvent (load) { jumpSpeed = 0; downSpeed = 0; jumpCounter = 5; } onClipEvent (enterFrame) { if (((_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms.hitTest(this._x - 5, this._y + 10, true))) || ((_root.platforms2.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x + 5, this._y + 10, true))) || (_root.platforms2.hitTest(this._x - 5, this._y + 10, true)))) { if (jumpCounter > 0) { jumpCounter = jumpCounter - 1; } down = false; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 20, true) || (_root.platforms.hitTest(this._x + 5, this._y - 20, true))) || (_root.platforms.hitTest(this._x - 5, this._y - 20, true))) { up = false; } else { up = true; } if (_root.platforms.hitTest(this._x - 8, this._y, true) || (_root.platforms.hitTest(this._x - 8, this._y - 10, true))) { left = false; } else { left = true; } if (_root.platforms.hitTest(this._x + 8, this._y, true) || (_root.platforms.hitTest(this._x + 8, this._y - 10, true))) { right = false; } else { right = true; } if (Key.isDown(37) && (left == true)) { _xscale = -100; this._x = this._x - 3; } if (Key.isDown(39) && (right == true)) { _xscale = 100; this._x = this._x + 3; } if ((Key.isDown(38) && (down == false)) && (jumpCounter == 0)) { jumpSpeed = 10; jumpCounter = 5; } jumpSpeed = jumpSpeed - 1; if (jumpSpeed < 0) { jumpSpeed = 0; } if (up == true) { this._y = this._y - jumpSpeed; } else { jumpSpeed = 0; } if ((down == true) && (jumpSpeed == 0)) { downSpeed = downSpeed + 1; } if (downSpeed > 10) { downSpeed = 10; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } if (_root.platforms.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } if (_root.platforms.hitTest(this._x, this._y + 8, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 7, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 6, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 5, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 4, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 3, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 2, true)) { this._y = this._y - 1; } if (_root.platforms.hitTest(this._x, this._y + 1, true)) { this._y = this._y - 1; } if (_root.platforms2.hitTest(this._x, this._y + 9, true)) { this._y = this._y - 2; } _root._x = _root._x - Math.round(((_root._x + this._x) - 250) / 15); _root._y = _root._y - Math.round(((_root._y + this._y) - 250) / 20); if (this._y > 450) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 96 MovieClip "health" in Frame 21
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { if (Key.isDown(32)) { this._alpha = 100; } lives = _root.lives; _x = _root.you._x; _y = _root.you._y; if (_root.Hcount == 30) { _root.HP = _root.HP - 1; } if (_root.Hcount > 0) { _root.Hcount = _root.Hcount - 1; } gotoAndStop(_root.HP); if (_alpha > 0) { _alpha = (_alpha - 0.2); } if (_root.HP == 1) { _root.lives = _root.lives - 1; _root.liveslost = _root.liveslost + 1; _root.HP = 7; _root.prevFrame(); } }
Frame 22
TIME = _root.sec; finalScore = 0; spoints = 0; sTIME = 0; slives = 0; sliveslost = 0;
Instance of Symbol 82 MovieClip in Frame 22
onClipEvent (enterFrame) { _root._x = _root._x - Math.round((_root._x + this._x) / 15); _root._y = _root._y - Math.round((_root._y + this._y) / 20); }
Frame 23
stopAllSounds(); nextFrame();
Frame 24
nextFrame();
Instance of Symbol 82 MovieClip in Frame 25
onClipEvent (enterFrame) { _root._x = _root._x - Math.round((_root._x + this._x) / 15); _root._y = _root._y - Math.round((_root._y + this._y) / 20); }
Symbol 5 MovieClip [fps] Frame 1
fps = 30; var timeinit = new Date(); var lasttime = timeinit.getMilliseconds(); onEnterFrame = function () { var _local1 = new Date(); timepassed = (((_local1.getMilliseconds() - lasttime) >= 0) ? (_local1.getMilliseconds() - lasttime) : (1000 + (_local1.getMilliseconds() - lasttime))); fps = Math.round(10000 / timepassed) / 10; lasttime = _local1.getMilliseconds(); };
Symbol 22 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }
Symbol 28 Button
on (release) { getURL ("http://www.thegamehomepage.com/freesitecontent", "_blank"); }
Symbol 35 Button
on (release) { nextFrame(); }
Symbol 42 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 2
_root.PointCounter._alpha = 100;
Symbol 53 MovieClip Frame 1
stop();
Instance of Symbol 61 MovieClip in Symbol 62 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.health._alpha = 100; _root.Hcount = 30; } }
Symbol 63 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
aiming = true; stop();
Instance of Symbol 63 MovieClip in Symbol 65 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.you._y <= this._parent._y) { if (_parent.aiming == true) { _rotation = (Math.atan2(_root.you._y - (_parent._y + _y), _root.you._x - (_parent._x + _x)) * 57.2957795130823); } else { play(); } } else { this._rotation = 270; } }
Symbol 65 MovieClip Frame 15
aiming = false;
Symbol 77 MovieClip Frame 1
stop();
Instance of Symbol 77 MovieClip in Symbol 78 MovieClip Frame 1
onClipEvent (enterFrame) { if (Key.isDown(37) || (Key.isDown(39))) { play(); } }
Symbol 81 MovieClip Frame 1
stop();
Symbol 96 MovieClip Frame 7
stop();
Instance of Symbol 109 MovieClip in Symbol 110 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 142 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 142 MovieClip Frame 67
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 143 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 145 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 151 MovieClip Frame 35
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 151 MovieClip Frame 73
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 152 MovieClip Frame 35
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 109 MovieClip in Symbol 153 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Symbol 171 MovieClip Frame 35
_root.stopAllSounds(); _root.nextFrame();
Symbol 172 MovieClip Frame 1
Aiming = true;
Symbol 172 MovieClip Frame 120
Aiming = false; _root.C = _root.C + 1;
Symbol 172 MovieClip Frame 133
tellTarget (_root) { duplicateMovieClip (_root.Bullet, "bullet" + C, C); };
Symbol 172 MovieClip Frame 134
gotoAndPlay (1);
Symbol 172 MovieClip Frame 135
Aiming = false;
Symbol 177 MovieClip Frame 7
stop();
Symbol 187 Button
on (release) { stopAllSounds(); gotoAndStop (2); _root._x = 0; _root._y = 0; }
Symbol 211 MovieClip Frame 79
tellTarget (_root) { spoints = points; finalScore = finalScore + points; };
Symbol 211 MovieClip Frame 99
tellTarget (_root) { sTIME = TIME; finalScore = finalScore + Math.round(10000 / TIME); };
Symbol 211 MovieClip Frame 119
tellTarget (_root) { slives = lives; finalScore = finalScore + (lives * 10000); };
Symbol 211 MovieClip Frame 139
tellTarget (_root) { sliveslost = liveslost; finalScore = finalScore - (liveslost * 100); };
Symbol 211 MovieClip Frame 160
tellTarget (_root) { if (finalScore > hiscore) { hiscore = finalScore; SMDATA.data.hiscore = hiscore; } }; stop();
Symbol 215 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }
Symbol 218 Button
on (release) { stopAllSounds(); gotoAndStop (3); }

Library Items

Symbol 1 GraphicUsed by:5
Symbol 2 FontUsed by:3 4
Symbol 3 EditableTextUses:2Used by:5
Symbol 4 TextUses:2Used by:5
Symbol 5 MovieClip [fps]Uses:1 3 4
Symbol 6 GraphicUsed by:Timeline
Symbol 7 GraphicUsed by:Timeline
Symbol 8 FontUsed by:9 15 16 17 18 19 21 23 24 25 27 29 30 31 38 39 216
Symbol 9 TextUses:8Used by:Timeline
Symbol 10 FontUsed by:11 97 179 180 181 182 183 184 185 188 189 190 191 192 193 194 195 196 199 200 201 202 203 204 205 206 207 208 209 210 212 213 214
Symbol 11 TextUses:10Used by:Timeline
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 TextUses:8Used by:Timeline
Symbol 16 TextUses:8Used by:Timeline
Symbol 17 TextUses:8Used by:22
Symbol 18 TextUses:8Used by:22
Symbol 19 TextUses:8Used by:22
Symbol 20 GraphicUsed by:22
Symbol 21 TextUses:8Used by:22
Symbol 22 ButtonUses:17 18 19 20 21Used by:Timeline
Symbol 23 TextUses:8Used by:28
Symbol 24 TextUses:8Used by:28
Symbol 25 TextUses:8Used by:28
Symbol 26 GraphicUsed by:28
Symbol 27 TextUses:8Used by:28
Symbol 28 ButtonUses:23 24 25 26 27Used by:Timeline
Symbol 29 TextUses:8Used by:35
Symbol 30 TextUses:8Used by:35
Symbol 31 TextUses:8Used by:35
Symbol 32 GraphicUsed by:35
Symbol 33 FontUsed by:34 217
Symbol 34 TextUses:33Used by:35
Symbol 35 ButtonUses:29 30 31 32 34Used by:Timeline
Symbol 36 FontUsed by:37
Symbol 37 TextUses:36Used by:Timeline
Symbol 38 TextUses:8Used by:Timeline
Symbol 39 EditableTextUses:8Used by:Timeline
Symbol 40 GraphicUsed by:42
Symbol 41 SoundUsed by:42
Symbol 42 MovieClipUses:40 41Used by:Timeline
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 FontUsed by:48 49 50 56 57 58 68 71 72 85 112 117
Symbol 48 TextUses:47Used by:Timeline
Symbol 49 TextUses:47Used by:Timeline
Symbol 50 TextUses:47Used by:Timeline
Symbol 51 GraphicUsed by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:51 52Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:Timeline
Symbol 56 TextUses:47Used by:Timeline
Symbol 57 TextUses:47Used by:Timeline
Symbol 58 TextUses:47Used by:Timeline
Symbol 59 GraphicUsed by:63
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClipUses:61Used by:63
Symbol 63 MovieClipUses:59 62Used by:65
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:63 64Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 TextUses:47Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 TextUses:47Used by:Timeline
Symbol 72 TextUses:47Used by:Timeline
Symbol 73 GraphicUsed by:78
Symbol 74 ShapeTweeningUsed by:77
Symbol 75 ShapeTweeningUsed by:77
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:74 75 76Used by:78
Symbol 78 MovieClipUses:73 77Used by:Timeline
Symbol 79 GraphicUsed by:81
Symbol 80 SoundUsed by:81
Symbol 81 MovieClipUses:79 80Used by:Timeline
Symbol 82 MovieClipUsed by:Timeline
Symbol 83 SoundUsed by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 TextUses:47Used by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 FontUsed by:89
Symbol 89 EditableTextUses:88Used by:96
Symbol 90 GraphicUsed by:96 177
Symbol 91 GraphicUsed by:96 177
Symbol 92 GraphicUsed by:96 177
Symbol 93 GraphicUsed by:96 177
Symbol 94 GraphicUsed by:96 177
Symbol 95 GraphicUsed by:96 177
Symbol 96 MovieClipUses:89 90 91 92 93 94 95Used by:Timeline
Symbol 97 EditableTextUses:10Used by:98
Symbol 98 MovieClipUses:97Used by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:Timeline
Symbol 105 GraphicUsed by:Timeline
Symbol 106 GraphicUsed by:Timeline
Symbol 107 GraphicUsed by:111
Symbol 108 GraphicUsed by:109 110 142 143 151 152 153
Symbol 109 MovieClipUses:108Used by:110 142 143 145 151 152 153
Symbol 110 MovieClipUses:108 109Used by:111 116 125 138
Symbol 111 MovieClipUses:107 110Used by:Timeline
Symbol 112 TextUses:47Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 GraphicUsed by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115 110Used by:Timeline
Symbol 117 TextUses:47Used by:Timeline
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 GraphicUsed by:125
Symbol 122 GraphicUsed by:124 157
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:122 123Used by:125
Symbol 125 MovieClipUses:121 110 124Used by:Timeline
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:Timeline
Symbol 128 GraphicUsed by:Timeline
Symbol 129 GraphicUsed by:Timeline
Symbol 130 GraphicUsed by:138
Symbol 131 GraphicUsed by:137
Symbol 132 GraphicUsed by:137
Symbol 133 GraphicUsed by:137
Symbol 134 GraphicUsed by:137
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:131 132 133 134 135 136Used by:138
Symbol 138 MovieClipUses:130 110 137Used by:Timeline
Symbol 139 GraphicUsed by:Timeline
Symbol 140 GraphicUsed by:Timeline
Symbol 141 GraphicUsed by:146
Symbol 142 MovieClipUses:108 109Used by:146
Symbol 143 MovieClipUses:108 109Used by:146
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144 109Used by:146
Symbol 146 MovieClipUses:141 142 143 145Used by:Timeline
Symbol 147 GraphicUsed by:Timeline
Symbol 148 GraphicUsed by:Timeline
Symbol 149 GraphicUsed by:Timeline
Symbol 150 GraphicUsed by:158
Symbol 151 MovieClipUses:108 109Used by:158
Symbol 152 MovieClipUses:108 109Used by:158
Symbol 153 MovieClipUses:108 109Used by:158
Symbol 154 GraphicUsed by:157
Symbol 155 GraphicUsed by:157
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:122 154 155 156Used by:158
Symbol 158 MovieClipUses:150 151 152 153 157Used by:Timeline
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:Timeline
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:Timeline
Symbol 164 GraphicUsed by:171 172
Symbol 165 GraphicUsed by:172
Symbol 166 ShapeTweeningUsed by:171
Symbol 167 GraphicUsed by:171
Symbol 168 GraphicUsed by:171
Symbol 169 ShapeTweeningUsed by:171
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:164 166 167 168 169 170Used by:172
Symbol 172 MovieClipUses:164 165 171Used by:Timeline
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:Timeline
Symbol 177 MovieClipUses:90 91 92 93 94 95Used by:Timeline
Symbol 178 SoundUsed by:Timeline
Symbol 179 TextUses:10Used by:Timeline
Symbol 180 EditableTextUses:10Used by:Timeline
Symbol 181 EditableTextUses:10Used by:Timeline
Symbol 182 EditableTextUses:10Used by:Timeline
Symbol 183 TextUses:10Used by:187 218
Symbol 184 TextUses:10Used by:187 218
Symbol 185 TextUses:10Used by:187 218
Symbol 186 GraphicUsed by:187 215 218
Symbol 187 ButtonUses:183 184 185 186Used by:Timeline
Symbol 188 EditableTextUses:10Used by:Timeline
Symbol 189 EditableTextUses:10Used by:Timeline
Symbol 190 EditableTextUses:10Used by:Timeline
Symbol 191 EditableTextUses:10Used by:Timeline
Symbol 192 EditableTextUses:10Used by:Timeline
Symbol 193 EditableTextUses:10Used by:Timeline
Symbol 194 EditableTextUses:10Used by:Timeline
Symbol 195 EditableTextUses:10Used by:Timeline
Symbol 196 EditableTextUses:10Used by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 EditableTextUses:10Used by:Timeline
Symbol 200 EditableTextUses:10Used by:Timeline
Symbol 201 EditableTextUses:10Used by:Timeline
Symbol 202 EditableTextUses:10Used by:Timeline
Symbol 203 EditableTextUses:10Used by:Timeline
Symbol 204 EditableTextUses:10Used by:Timeline
Symbol 205 EditableTextUses:10Used by:Timeline
Symbol 206 EditableTextUses:10Used by:Timeline
Symbol 207 EditableTextUses:10Used by:Timeline
Symbol 208 EditableTextUses:10Used by:Timeline
Symbol 209 EditableTextUses:10Used by:Timeline
Symbol 210 EditableTextUses:10Used by:Timeline
Symbol 211 MovieClipUsed by:Timeline
Symbol 212 TextUses:10Used by:215
Symbol 213 TextUses:10Used by:215
Symbol 214 TextUses:10Used by:215
Symbol 215 ButtonUses:212 213 214 186Used by:Timeline
Symbol 216 TextUses:8Used by:Timeline
Symbol 217 TextUses:33Used by:Timeline
Symbol 218 ButtonUses:183 184 185 186Used by:Timeline
Symbol 219 SoundUsed by:Timeline

Instance Names

"platforms"Frame 3Symbol 46 MovieClip
"platforms2"Frame 3Symbol 55 MovieClip
"you"Frame 3Symbol 78 MovieClip
"blankSym"Frame 3Symbol 82 MovieClip
"platforms"Frame 5Symbol 87 MovieClip
"health"Frame 5Symbol 96 MovieClip
"you"Frame 5Symbol 78 MovieClip
"PointCounter"Frame 5Symbol 98 MovieClip
"platforms"Frame 7Symbol 102 MovieClip
"platforms2"Frame 7Symbol 104 MovieClip
"you"Frame 7Symbol 78 MovieClip
"PointCounter"Frame 7Symbol 98 MovieClip
"health"Frame 7Symbol 96 MovieClip
"platforms"Frame 9Symbol 111 MovieClip
"you"Frame 9Symbol 78 MovieClip
"PointCounter"Frame 9Symbol 98 MovieClip
"health"Frame 9Symbol 96 MovieClip
"platforms"Frame 11Symbol 116 MovieClip
"you"Frame 11Symbol 78 MovieClip
"PointCounter"Frame 11Symbol 98 MovieClip
"health"Frame 11Symbol 96 MovieClip
"platforms"Frame 13Symbol 125 MovieClip
"platforms2"Frame 13Symbol 127 MovieClip
"you"Frame 13Symbol 78 MovieClip
"PointCounter"Frame 13Symbol 98 MovieClip
"health"Frame 13Symbol 96 MovieClip
"platforms"Frame 15Symbol 138 MovieClip
"you"Frame 15Symbol 78 MovieClip
"PointCounter"Frame 15Symbol 98 MovieClip
"health"Frame 15Symbol 96 MovieClip
"platforms"Frame 17Symbol 146 MovieClip
"you"Frame 17Symbol 78 MovieClip
"PointCounter"Frame 17Symbol 98 MovieClip
"health"Frame 17Symbol 96 MovieClip
"platforms"Frame 19Symbol 158 MovieClip
"platforms2"Frame 19Symbol 160 MovieClip
"you"Frame 19Symbol 78 MovieClip
"PointCounter"Frame 19Symbol 98 MovieClip
"health"Frame 19Symbol 96 MovieClip
"platforms"Frame 21Symbol 163 MovieClip
"boss"Frame 21Symbol 172 MovieClip
"Bullet"Frame 21Symbol 174 MovieClip
"RE"Frame 21Symbol 176 MovieClip
"Bosshealth"Frame 21Symbol 177 MovieClip
"you"Frame 21Symbol 78 MovieClip
"health"Frame 21Symbol 96 MovieClip
"lives"Symbol 96 MovieClip Frame 1Symbol 89 EditableText
"points"Symbol 98 MovieClip Frame 1Symbol 97 EditableText

Special Tags

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

Labels

"gameOver"Frame 23
"dead"Symbol 172 MovieClip Frame 135

Dynamic Text Variables

fpsSymbol 3 EditableText"<p align="left"></p>"
hiscoreSymbol 39 EditableText"100000"
livesSymbol 89 EditableText"10"
pointsSymbol 97 EditableText"100000"
sTIMESymbol 182 EditableText"1000"
finalScoreSymbol 189 EditableText"100000"
sTIMESymbol 200 EditableText"10000"
slivesSymbol 201 EditableText"10000"
sliveslostSymbol 202 EditableText"10000"
spointsSymbol 207 EditableText"10000"
hiscoreSymbol 209 EditableText"100000"




http://swfchan.com/6/25913/info.shtml
Created: 23/5 -2019 06:34:29 Last modified: 23/5 -2019 06:34:29 Server time: 17/05 -2024 05:09:00