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

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

squareman3.swf

This is the info page for
Flash #10101

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


Text
Loading

Loaded

Play

Play

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 3

your high score:

100000

Walk with the arrow Keys

Jump with the arrow
Keys

Hop onto a
trampoline to
jump higher

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

Use the arrow
keys to swim

press up to
jump out of
the water

these will
give you
extra lives

play
more
games

play
more
games

play
more
games

Press Space to
display your points
health and lives

Grab keys to unlock
barriers

purple enemies
wont leave the
water

10

100000

Dont get
crushed!

Created by Nick Crockett 2007

Your score:

TIme BONUS

1000

Play Again?

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!

compete online at
thegamehomepage.com

compete online at
thegamehomepage.com

compete online at
thegamehomepage.com

Game OVER!

play more games

play more games

play more games

play more games

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;
Frame 2
SM3DATA = SharedObject.getLocal("SM3DATA"); if (SM3DATA.data.hiscore == null) { _root.hiscore = 0; } else { _root.hiscore = SM3DATA.data.hiscore; } stop();
Instance of Symbol 51 MovieClip in Frame 2
onClipEvent (enterFrame) { }
Frame 3
stop(); lives = 5; points = 0; liveslost = 0;
Instance of Symbol 57 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 84 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 68 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 97 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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 101 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; } }
Instance of Symbol 108 MovieClip in Frame 3
onClipEvent (enterFrame) { this._x = -_root._x; this._y = -_root._y; }
Frame 4
HP = 7; Hcount = 0; nextFrame();
Frame 5
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Frame 6
stop();
Instance of Symbol 59 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 84 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 6
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 123 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.platforms.gate.nextFrame(); this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 6
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 81 MovieClip in Frame 6
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 126 MovieClip in Frame 6
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true)) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 81 MovieClip in Frame 6
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 81 MovieClip in Frame 6
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 81 MovieClip in Frame 6
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 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 68 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 126 MovieClip in Frame 6
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true)) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 135 MovieClip "health" in Frame 6
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Instance of Symbol 138 MovieClip "PointCounter" in Frame 6
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 97 MovieClip "you" in Frame 6
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Frame 7
HP = 7; Hcount = 0; nextFrame();
Frame 8
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Frame 9
stop();
Instance of Symbol 59 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 59 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 59 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 59 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 59 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 59 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 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 84 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 156 MovieClip in Frame 9
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 160 MovieClip in Frame 9
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 9
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 9
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 162 MovieClip in Frame 9
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 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 100 MovieClip in Frame 9
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 162 MovieClip in Frame 9
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 162 MovieClip in Frame 9
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 162 MovieClip in Frame 9
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 81 MovieClip in Frame 9
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 81 MovieClip in Frame 9
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 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 135 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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Instance of Symbol 138 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 97 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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Frame 10
HP = 7; Hcount = 0; nextFrame();
Frame 11
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Frame 12
stop();
Instance of Symbol 57 MovieClip in Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 84 MovieClip in Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 156 MovieClip in Frame 12
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 160 MovieClip in Frame 12
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 81 MovieClip in Frame 12
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 68 MovieClip in Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 25; play(); } }
Instance of Symbol 156 MovieClip in Frame 12
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 126 MovieClip in Frame 12
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 12
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 12
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 138 MovieClip "PointCounter" in Frame 12
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 97 MovieClip "you" in Frame 12
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 MovieClip "health" in Frame 12
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 13
HP = 7; Hcount = 0; nextFrame();
Frame 14
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 100 MovieClip in Frame 14
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 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 14
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Frame 15
stop();
Instance of Symbol 84 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 162 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 162 MovieClip in Frame 15
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 68 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 138 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 97 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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 16
HP = 7; Hcount = 0; nextFrame();
Frame 17
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 100 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 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 156 MovieClip in Frame 17
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 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Frame 18
stop();
Instance of Symbol 59 MovieClip in Frame 18
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 18
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 84 MovieClip in Frame 18
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 162 MovieClip in Frame 18
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 MovieClip in Frame 18
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 162 MovieClip in Frame 18
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 MovieClip in Frame 18
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 MovieClip in Frame 18
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 156 MovieClip in Frame 18
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 126 MovieClip in Frame 18
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 18
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 18
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 156 MovieClip in Frame 18
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 138 MovieClip "PointCounter" in Frame 18
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 97 MovieClip "you" in Frame 18
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 MovieClip "health" in Frame 18
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 19
HP = 7; Hcount = 0; nextFrame();
Frame 20
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 100 MovieClip in Frame 20
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 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Frame 21
stop();
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 84 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 MovieClip in Frame 21
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 68 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 68 MovieClip in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 162 MovieClip in Frame 21
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 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 30; } }
Instance of Symbol 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 162 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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 160 MovieClip in Frame 21
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 21
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 21
onClipEvent (load) { R = false; U = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 21
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 21
onClipEvent (load) { R = false; U = false; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 160 MovieClip in Frame 21
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (_root.platforms2.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if ((_root.platforms.hitTest(this._x, this._y - 5, true) || (_root.water.hitTest(this._x, this._y - 5, true))) || (_root.platforms2.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 138 MovieClip "PointCounter" in Frame 21
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 97 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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 22
HP = 7; Hcount = 0; nextFrame();
Frame 23
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Frame 24
stop();
Instance of Symbol 57 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 84 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 162 MovieClip in Frame 24
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 + 1); } else { _x = (_x - 1); } if (this.hitTest(_root.you)) { _root.you.jumpSpeed = 25; } }
Instance of Symbol 100 MovieClip in Frame 24
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 57 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 10; this.nextFrame(); } }
Instance of Symbol 126 MovieClip in Frame 24
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 24
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 138 MovieClip "PointCounter" in Frame 24
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 97 MovieClip "you" in Frame 24
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 MovieClip "health" in Frame 24
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 25
HP = 7; Hcount = 0; nextFrame();
Frame 26
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Instance of Symbol 57 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.points = _root.points + 1; this.nextFrame(); } }
Frame 27
stop();
Instance of Symbol 84 MovieClip in Frame 27
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.nextFrame(); } }
Instance of Symbol 126 MovieClip in Frame 27
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 27
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 27
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 126 MovieClip in Frame 27
onClipEvent (load) { R = true; U = true; } onClipEvent (enterFrame) { if (_root.platforms.hitTest(this._x, this._y + 5, true) || (!_root.water.hitTest(this._x, this._y + 5, true))) { down = false; U = true; } else { down = true; } if (_root.platforms.hitTest(this._x, this._y - 5, true) || (!_root.water.hitTest(this._x, this._y - 5, true))) { up = false; U = false; } else { up = true; } 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 (U == false) { _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 81 MovieClip in Frame 27
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 81 MovieClip in Frame 27
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 81 MovieClip in Frame 27
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 81 MovieClip in Frame 27
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 81 MovieClip in Frame 27
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 68 MovieClip in Frame 27
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 15; play(); } }
Instance of Symbol 68 MovieClip in Frame 27
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.you.downSpeed = 0; _root.you.jumpSpeed = 20; play(); } }
Instance of Symbol 138 MovieClip "PointCounter" in Frame 27
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 97 MovieClip "you" in Frame 27
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 MovieClip "health" in Frame 27
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 28
HP = 7; Hcount = 0; nextFrame();
Instance of Symbol 245 MovieClip "bossHP" in Frame 28
onClipEvent (enterFrame) { this._x = _root.boss._x; this._y = _root.boss._y; if (this._alpha > 0) { _alpha = (_alpha - 0.5); } }
Frame 29
stop();
Instance of Symbol 138 MovieClip "PointCounter" in Frame 29
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 253 MovieClip "pillar" in Frame 29
onClipEvent (enterFrame) { this._x = this._x + (((_root.you._x + 200) - this._x) / 20); }
Instance of Symbol 266 MovieClip "boss" in Frame 29
onClipEvent (load) { tracking = true; H = 4; } onClipEvent (enterFrame) { if (tracking == true) { this._y = this._y + ((_root.you._y - this._y) / 10); } if (this.hitTest(_root.wallSpikes)) { this.H = this.H - 1; _root.bossHP._alpha = 100; this.gotoAndPlay(1); _root.you._x = 100; this._x = this._x - 100; _root.pillar._x = _root.pillar._x - 100; } this._x = _root.pillar._x; if (H == 0) { _root.gotoAndStop("win"); } }
Instance of Symbol 97 MovieClip "you" in Frame 29
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 (_root.water.hitTest(this._x, this._y, true)) { jumpCounter = 0; if ((up == true) && (_root.water.hitTest(this._x, this._y + 1, true))) { this._y = this._y - 1; } if ((down == true) && (Key.isDown(40))) { downSpeed = downSpeed + 5; } if (downSpeed > 5) { downSpeed = 5; } if (downSpeed > 0) { downSpeed = downSpeed - 1; } if (down == true) { this._y = this._y + downSpeed; } if (down == false) { downSpeed = 0; } } 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) || (_root.water.hitTest(this._x, this._y + 10, true) && (!_root.water.hitTest(this._x, this._y - 20, true))))) && (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 (!_root.water.hitTest(this._x, this._y, true)) { 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 > 1000) { _root.HP = 1; _root.health._alpha = 100; } }
Instance of Symbol 135 MovieClip "health" in Frame 29
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(); } if (_root.lives == -1) { _root.gotoAndStop("gameOver"); } }
Frame 30
TIME = _root.sec; finalScore = 0; spoints = 0; sTIME = 0; slives = 0; sliveslost = 0;
Instance of Symbol 101 MovieClip in Frame 30
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 10 Button
on (release) { getURL ("http://www.thegamehomepage.com/", "_blank"); }
Symbol 14 Button
on (release) { gotoAndPlay ("intro"); }
Symbol 17 Button
on (release) { getURL ("http://www.thegamehomepage.com/", "_blank"); }
Symbol 25 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { tghbar._xscale = PercentLoaded; } else { gotoAndPlay ("loaded"); }
Symbol 25 MovieClip Frame 2
gotoAndPlay (1);
Symbol 25 MovieClip Frame 86
stop();
Symbol 25 MovieClip Frame 172
Symbol 25 MovieClip Frame 359
_root.play();
Symbol 34 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }
Symbol 40 Button
on (release) { getURL ("http://www.thegamehomepage.com/freesitecontent", "_blank"); }
Symbol 47 Button
on (release) { nextFrame(); }
Symbol 57 MovieClip Frame 1
stop();
Symbol 57 MovieClip Frame 2
_root.PointCounter._alpha = 100;
Symbol 68 MovieClip Frame 1
stop();
Instance of Symbol 75 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.health._alpha = 100; _root.Hcount = 30; } }
Symbol 77 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 1
aiming = true; stop();
Instance of Symbol 77 MovieClip in Symbol 79 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 79 MovieClip Frame 15
aiming = false;
Symbol 96 MovieClip Frame 1
stop();
Instance of Symbol 96 MovieClip in Symbol 97 MovieClip Frame 1
onClipEvent (enterFrame) { if (Key.isDown(37) || (Key.isDown(39))) { play(); } }
Symbol 100 MovieClip Frame 1
stop();
Symbol 107 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }
Symbol 118 MovieClip Frame 1
stop();
Symbol 123 MovieClip Frame 1
stop();
Symbol 135 MovieClip Frame 7
stop();
Instance of Symbol 146 MovieClip in Symbol 147 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 146 MovieClip in Symbol 149 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Instance of Symbol 243 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) { this._xscale = (_root.boss.H / 4) * 100; }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Instance of Symbol 59 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.you) && (_root.Hcount == 0)) { _root.you.jumpSpeed = 10; _root.health._alpha = 100; _root.Hcount = 30; } }
Symbol 263 MovieClip Frame 30
_parent.play();
Symbol 266 MovieClip Frame 136
tracking = false;
Symbol 266 MovieClip Frame 156
stop();
Instance of Symbol 263 MovieClip in Symbol 266 MovieClip Frame 156
onClipEvent (enterFrame) { if (this.hitTest(_root.you)) { _root.health._alpha = 100; _root.HP = 1; } }
Symbol 266 MovieClip Frame 181
tracking = true;
Symbol 277 Button
on (release) { stopAllSounds(); gotoAndStop (2); _root._x = 0; _root._y = 0; }
Symbol 301 MovieClip Frame 79
tellTarget (_root) { spoints = points; finalScore = finalScore + points; };
Symbol 301 MovieClip Frame 99
tellTarget (_root) { sTIME = TIME; finalScore = finalScore + Math.round(10000 / TIME); };
Symbol 301 MovieClip Frame 119
tellTarget (_root) { slives = lives; finalScore = finalScore + (lives * 10000); };
Symbol 301 MovieClip Frame 139
tellTarget (_root) { sliveslost = liveslost; finalScore = finalScore - (liveslost * 100); };
Symbol 301 MovieClip Frame 160
tellTarget (_root) { if (finalScore > hiscore) { hiscore = finalScore; SM3DATA.data.hiscore = hiscore; } }; stop();
Symbol 305 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }
Symbol 307 Button
on (release) { stopAllSounds(); gotoAndStop (3); }
Symbol 312 Button
on (release) { getURL ("http://www.thegamehomepage.com", "_blank"); }

Library Items

Symbol 1 GraphicUsed by:25
Symbol 2 FontUsed by:3 11 12 13
Symbol 3 TextUses:2Used by:25
Symbol 4 GraphicUsed by:5 14
Symbol 5 MovieClipUses:4Used by:25
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:25
Symbol 8 BitmapUsed by:9
Symbol 9 GraphicUses:8Used by:10 18
Symbol 10 ButtonUses:9Used by:25
Symbol 11 TextUses:2Used by:25
Symbol 12 TextUses:2Used by:14
Symbol 13 EditableTextUses:2Used by:14
Symbol 14 ButtonUses:12 13 4Used by:25
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:17 25
Symbol 17 ButtonUses:16Used by:25
Symbol 18 MovieClipUses:9Used by:25
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:25
Symbol 21 SoundUsed by:25
Symbol 22 FontUsed by:23 27 28 29 30 31 33 35 36 37 39 41 42 43 52 53
Symbol 23 TextUses:22Used by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:1 3 5 7 10 11 14 16 17 18 20 21 23 24 SS1Used by:Timeline
Symbol 26 GraphicUsed by:Timeline
Symbol 27 TextUses:22Used by:Timeline
Symbol 28 TextUses:22Used by:Timeline
Symbol 29 TextUses:22Used by:34
Symbol 30 TextUses:22Used by:34
Symbol 31 TextUses:22Used by:34
Symbol 32 GraphicUsed by:34
Symbol 33 TextUses:22Used by:34
Symbol 34 ButtonUses:29 30 31 32 33Used by:Timeline
Symbol 35 TextUses:22Used by:40
Symbol 36 TextUses:22Used by:40
Symbol 37 TextUses:22Used by:40
Symbol 38 GraphicUsed by:40
Symbol 39 TextUses:22Used by:40
Symbol 40 ButtonUses:35 36 37 38 39Used by:Timeline
Symbol 41 TextUses:22Used by:47
Symbol 42 TextUses:22Used by:47
Symbol 43 TextUses:22Used by:47
Symbol 44 GraphicUsed by:47
Symbol 45 FontUsed by:46 306
Symbol 46 TextUses:45Used by:47
Symbol 47 ButtonUses:41 42 43 44 46Used by:Timeline
Symbol 48 FontUsed by:49
Symbol 49 TextUses:48Used by:Timeline
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:Timeline
Symbol 52 TextUses:22Used by:Timeline
Symbol 53 EditableTextUses:22Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:57
Symbol 56 SoundUsed by:57
Symbol 57 MovieClipUses:55 56Used by:Timeline
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:247  Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 FontUsed by:63 64 65 71 72 82 85 88 89 90 112 113 114 158
Symbol 63 TextUses:62Used by:Timeline
Symbol 64 TextUses:62Used by:Timeline
Symbol 65 TextUses:62Used by:Timeline
Symbol 66 GraphicUsed by:68
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:66 67Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 TextUses:62Used by:Timeline
Symbol 72 TextUses:62Used by:Timeline
Symbol 73 GraphicUsed by:77
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:76
Symbol 76 MovieClipUses:75Used by:77
Symbol 77 MovieClipUses:73 76Used by:79
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:77 78Used by:Timeline
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:Timeline
Symbol 82 TextUses:62Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:Timeline
Symbol 85 TextUses:62Used by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 TextUses:62Used by:Timeline
Symbol 89 TextUses:62Used by:Timeline
Symbol 90 TextUses:62Used by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 GraphicUsed by:97
Symbol 93 ShapeTweeningUsed by:96
Symbol 94 ShapeTweeningUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:93 94 95Used by:97
Symbol 97 MovieClipUses:92 96Used by:Timeline
Symbol 98 GraphicUsed by:100
Symbol 99 SoundUsed by:100
Symbol 100 MovieClipUses:98 99Used by:Timeline
Symbol 101 MovieClipUsed by:Timeline
Symbol 102 FontUsed by:103 104 105
Symbol 103 TextUses:102Used by:107
Symbol 104 TextUses:102Used by:107
Symbol 105 TextUses:102Used by:107
Symbol 106 GraphicUsed by:107
Symbol 107 ButtonUses:103 104 105 106Used by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 SoundUsed by:Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 GraphicUsed by:Timeline
Symbol 112 TextUses:62Used by:Timeline
Symbol 113 TextUses:62Used by:Timeline
Symbol 114 TextUses:62Used by:Timeline
Symbol 115 GraphicUsed by:Timeline
Symbol 116 GraphicUsed by:119
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119
Symbol 119 MovieClipUses:116 118Used by:Timeline
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:Timeline
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:Timeline
Symbol 127 FontUsed by:128
Symbol 128 EditableTextUses:127Used by:135
Symbol 129 GraphicUsed by:135
Symbol 130 GraphicUsed by:135
Symbol 131 GraphicUsed by:135
Symbol 132 GraphicUsed by:135
Symbol 133 GraphicUsed by:135
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:128 129 130 131 132 133 134Used by:Timeline
Symbol 136 FontUsed by:137 268 269 270 271 272 273 274 276 278 279 280 281 282 283 284 285 286 289 290 291 292 293 294 295 296 297 298 299 300 302 303 304 308 309 310 311
Symbol 137 EditableTextUses:136Used by:138
Symbol 138 MovieClipUses:137Used by:Timeline
Symbol 139 GraphicUsed by:Timeline
Symbol 140 GraphicUsed by:Timeline
Symbol 141 GraphicUsed by:Timeline
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:Timeline
Symbol 144 GraphicUsed by:150
Symbol 145 GraphicUsed by:146 147
Symbol 146 MovieClipUses:145Used by:147 149
Symbol 147 MovieClipUses:145 146Used by:150 171 185 196 212 229 238
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148 146Used by:150 171 212 229 238
Symbol 150 MovieClipUses:144 147 149Used by:Timeline
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:Timeline
Symbol 153 GraphicUsed by:Timeline
Symbol 154 GraphicUsed by:Timeline
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:Timeline
Symbol 157 FontUsed by:158
Symbol 158 TextUses:62 157Used by:Timeline
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:Timeline
Symbol 163 GraphicUsed by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:Timeline
Symbol 167 GraphicUsed by:Timeline
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:Timeline
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170 147 149Used by:Timeline
Symbol 172 GraphicUsed by:Timeline
Symbol 173 GraphicUsed by:Timeline
Symbol 174 GraphicUsed by:Timeline
Symbol 175 GraphicUsed by:Timeline
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:Timeline
Symbol 178 GraphicUsed by:185
Symbol 179 GraphicUsed by:184
Symbol 180 GraphicUsed by:184
Symbol 181 GraphicUsed by:184
Symbol 182 GraphicUsed by:184
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:179 180 181 182 183Used by:185
Symbol 185 MovieClipUses:178 147 184Used by:Timeline
Symbol 186 GraphicUsed by:Timeline
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:Timeline
Symbol 189 GraphicUsed by:196
Symbol 190 GraphicUsed by:195
Symbol 191 GraphicUsed by:195
Symbol 192 GraphicUsed by:195
Symbol 193 GraphicUsed by:195
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:190 191 192 193 194Used by:196
Symbol 196 MovieClipUses:189 147 195Used by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:Timeline
Symbol 202 GraphicUsed by:212
Symbol 203 GraphicUsed by:211
Symbol 204 GraphicUsed by:211
Symbol 205 GraphicUsed by:211
Symbol 206 GraphicUsed by:211
Symbol 207 GraphicUsed by:211
Symbol 208 GraphicUsed by:211
Symbol 209 GraphicUsed by:211
Symbol 210 GraphicUsed by:211 226
Symbol 211 MovieClipUses:203 204 205 206 207 208 209 210Used by:212
Symbol 212 MovieClipUses:202 149 147 211Used by:Timeline
Symbol 213 GraphicUsed by:Timeline
Symbol 214 GraphicUsed by:229
Symbol 215 GraphicUsed by:226
Symbol 216 GraphicUsed by:226
Symbol 217 GraphicUsed by:226
Symbol 218 GraphicUsed by:226
Symbol 219 GraphicUsed by:226
Symbol 220 GraphicUsed by:226
Symbol 221 GraphicUsed by:226
Symbol 222 GraphicUsed by:226
Symbol 223 GraphicUsed by:226
Symbol 224 GraphicUsed by:226
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:215 216 217 218 219 220 221 222 223 224 225 210Used by:229
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:227Used by:229 238 251
Symbol 229 MovieClipUses:214 147 226 228 149Used by:Timeline
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:Timeline
Symbol 232 GraphicUsed by:Timeline
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:233Used by:Timeline
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:Timeline
Symbol 237 GraphicUsed by:238
Symbol 238 MovieClipUses:237 147 149 228Used by:Timeline
Symbol 239 GraphicUsed by:Timeline
Symbol 240 GraphicUsed by:Timeline
Symbol 241 GraphicUsed by:245
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:245
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:241 243 244Used by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 MovieClipUses:59Used by:Timeline
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:Timeline
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250 228Used by:Timeline
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:Timeline
Symbol 254 GraphicUsed by:266
Symbol 255 GraphicUsed by:266
Symbol 256 GraphicUsed by:266
Symbol 257 GraphicUsed by:266
Symbol 258 ShapeTweeningUsed by:263
Symbol 259 ShapeTweeningUsed by:263
Symbol 260 ShapeTweeningUsed by:263
Symbol 261 ShapeTweeningUsed by:263
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:258 259 260 261 262Used by:266
Symbol 264 GraphicUsed by:266
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClipUses:254 255 256 257 263 264 265Used by:Timeline
Symbol 267 SoundUsed by:Timeline
Symbol 268 TextUses:136Used by:Timeline
Symbol 269 EditableTextUses:136Used by:Timeline
Symbol 270 EditableTextUses:136Used by:Timeline
Symbol 271 EditableTextUses:136Used by:Timeline
Symbol 272 TextUses:136Used by:277 307
Symbol 273 TextUses:136Used by:277 307
Symbol 274 TextUses:136Used by:277 307
Symbol 275 GraphicUsed by:277 305 307 312
Symbol 276 TextUses:136Used by:277 307
Symbol 277 ButtonUses:272 273 274 275 276Used by:Timeline
Symbol 278 EditableTextUses:136Used by:Timeline
Symbol 279 EditableTextUses:136Used by:Timeline
Symbol 280 EditableTextUses:136Used by:Timeline
Symbol 281 EditableTextUses:136Used by:Timeline
Symbol 282 EditableTextUses:136Used by:Timeline
Symbol 283 EditableTextUses:136Used by:Timeline
Symbol 284 EditableTextUses:136Used by:Timeline
Symbol 285 EditableTextUses:136Used by:Timeline
Symbol 286 EditableTextUses:136Used by:Timeline
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:Timeline
Symbol 289 EditableTextUses:136Used by:Timeline
Symbol 290 TextUses:136Used by:Timeline
Symbol 291 EditableTextUses:136Used by:Timeline
Symbol 292 EditableTextUses:136Used by:Timeline
Symbol 293 EditableTextUses:136Used by:Timeline
Symbol 294 EditableTextUses:136Used by:Timeline
Symbol 295 EditableTextUses:136Used by:Timeline
Symbol 296 EditableTextUses:136Used by:Timeline
Symbol 297 EditableTextUses:136Used by:Timeline
Symbol 298 EditableTextUses:136Used by:Timeline
Symbol 299 EditableTextUses:136Used by:Timeline
Symbol 300 EditableTextUses:136Used by:Timeline
Symbol 301 MovieClipUsed by:Timeline
Symbol 302 TextUses:136Used by:305
Symbol 303 TextUses:136Used by:305
Symbol 304 TextUses:136Used by:305
Symbol 305 ButtonUses:302 303 304 275Used by:Timeline
Symbol 306 TextUses:45Used by:Timeline
Symbol 307 ButtonUses:272 273 274 275 276Used by:Timeline
Symbol 308 TextUses:136Used by:312
Symbol 309 TextUses:136Used by:312
Symbol 310 TextUses:136Used by:312
Symbol 311 TextUses:136Used by:312
Symbol 312 ButtonUses:308 309 310 275 311Used by:Timeline
Streaming Sound 1Used by:Symbol 25 MovieClip

Instance Names

"platforms"Frame 3Symbol 61 MovieClip
"platforms2"Frame 3Symbol 70 MovieClip
"water"Frame 3Symbol 87 MovieClip
"you"Frame 3Symbol 97 MovieClip
"blankSym"Frame 3Symbol 101 MovieClip
"platforms"Frame 6Symbol 119 MovieClip
"water"Frame 6Symbol 121 MovieClip
"health"Frame 6Symbol 135 MovieClip
"PointCounter"Frame 6Symbol 138 MovieClip
"you"Frame 6Symbol 97 MovieClip
"platforms2"Frame 9Symbol 143 MovieClip
"platforms"Frame 9Symbol 150 MovieClip
"water"Frame 9Symbol 152 MovieClip
"health"Frame 9Symbol 135 MovieClip
"PointCounter"Frame 9Symbol 138 MovieClip
"you"Frame 9Symbol 97 MovieClip
"platforms2"Frame 12Symbol 166 MovieClip
"water"Frame 12Symbol 169 MovieClip
"platforms"Frame 12Symbol 171 MovieClip
"PointCounter"Frame 12Symbol 138 MovieClip
"you"Frame 12Symbol 97 MovieClip
"health"Frame 12Symbol 135 MovieClip
"water"Frame 15Symbol 177 MovieClip
"platforms"Frame 15Symbol 185 MovieClip
"PointCounter"Frame 15Symbol 138 MovieClip
"you"Frame 15Symbol 97 MovieClip
"health"Frame 15Symbol 135 MovieClip
"platforms2"Frame 18Symbol 188 MovieClip
"platforms"Frame 18Symbol 196 MovieClip
"water"Frame 18Symbol 198 MovieClip
"PointCounter"Frame 18Symbol 138 MovieClip
"you"Frame 18Symbol 97 MovieClip
"health"Frame 18Symbol 135 MovieClip
"platforms2"Frame 21Symbol 201 MovieClip
"platforms"Frame 21Symbol 212 MovieClip
"PointCounter"Frame 21Symbol 138 MovieClip
"you"Frame 21Symbol 97 MovieClip
"health"Frame 21Symbol 135 MovieClip
"platforms"Frame 24Symbol 229 MovieClip
"water"Frame 24Symbol 231 MovieClip
"PointCounter"Frame 24Symbol 138 MovieClip
"you"Frame 24Symbol 97 MovieClip
"health"Frame 24Symbol 135 MovieClip
"platforms2"Frame 27Symbol 234 MovieClip
"water"Frame 27Symbol 236 MovieClip
"platforms"Frame 27Symbol 238 MovieClip
"PointCounter"Frame 27Symbol 138 MovieClip
"you"Frame 27Symbol 97 MovieClip
"health"Frame 27Symbol 135 MovieClip
"bossHP"Frame 28Symbol 245 MovieClip
"wallSpikes"Frame 29Symbol 247 MovieClip
"platforms2"Frame 29Symbol 249 MovieClip
"platforms"Frame 29Symbol 251 MovieClip
"PointCounter"Frame 29Symbol 138 MovieClip
"pillar"Frame 29Symbol 253 MovieClip
"boss"Frame 29Symbol 266 MovieClip
"you"Frame 29Symbol 97 MovieClip
"health"Frame 29Symbol 135 MovieClip
"tghbar"Symbol 25 MovieClip Frame 1Symbol 5 MovieClip
"tghbar"Symbol 25 MovieClip Frame 6Symbol 5 MovieClip
"gate"Symbol 119 MovieClip Frame 1Symbol 118 MovieClip
"lives"Symbol 135 MovieClip Frame 1Symbol 128 EditableText
"points"Symbol 138 MovieClip Frame 1Symbol 137 EditableText

Special Tags

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

Labels

"win"Frame 30
"gameOver"Frame 31
"loaded"Symbol 25 MovieClip Frame 3
"intro"Symbol 25 MovieClip Frame 87

Dynamic Text Variables

hiscoreSymbol 53 EditableText"100000"
livesSymbol 128 EditableText"10"
pointsSymbol 137 EditableText"100000"
sTIMESymbol 271 EditableText"1000"
finalScoreSymbol 279 EditableText"100000"
slivesSymbol 291 EditableText"10000"
sliveslostSymbol 292 EditableText"10000"
spointsSymbol 297 EditableText"10000"
hiscoreSymbol 299 EditableText"100000"




http://swfchan.com/3/10101/info.shtml
Created: 8/6 -2019 21:48:56 Last modified: 8/6 -2019 21:48:56 Server time: 27/04 -2024 21:40:31