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

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

Bouncy The Ball.swf

This is the info page for
Flash #11615

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


Text
Loading Bouncy The Ball

100

%

BOUNCY
THE BALL

MAIN MENU

password

password

Start game

Start game

Quality

Quality

Enter Password here

Password:

Type all passwords in lower case form. Press enter to submit.

HOw to play

For quick explanation,
see this small movie:

Here are the objects.
Ones written in red are bad, green is good.

Bad

Good

LEVEL 1

0

HEALTH:

100

POINTS:

0

LEVEL 1 COMPLETE

COINS:

0

POINTS:

0

ALL COIN BONUS!

PASSWORD:  BOUNCE

0

0

LEVEL 2

0

100

0

0

100

0

0

100

0

LEVEL 2 COMPLETE

0

0

PASSWORD:  BOING

LEVEL 3

0

100

0

0

100

0

LEVEL 3 COMPLETE

0

0

PASSWORD:  ROLL

0

0

LEVEL 4

0

100

0

LEVEL 4 COMPLETE

0

PASSWORD:  BALL

LEVEL 5

0

100

0

0

100

0

100

ENEMY  HEALTH:

100

100

100

Credits
MAIN CREDITS
Game design - Scott Thomas
Actionscripting - Scott Thomas
Idea - Scott Thomas
Final Testing - Stephen Thomas
Artwork - Scott Thomas
MUSIC
Levels 1-5 - John-Paul Walton
(Refraction)
Boss - Painkiller
Credits - Painkiller
LEVELS
Design - Scott Thomas, Stephen
Thomas
Fire - LiquidFire
Special Thanks To:
Stephen Thomas, my mom, NegativeOne,
qli1990, MartinISdead2Me, Ace, Rystic,
Nintendo, me, Painkiller, Newgrounds.
Thank you for playing!

ActionScript [AS1/AS2]

Frame 1
loadedbytes = getBytesLoaded(); totalbytes = getBytesTotal(); percentbytes = int(loadedbytes / (totalbytes / 100)); tellTarget (loader) { gotoAndStop(_root.percentbytes); }; Stage.showMenu = false;
Frame 2
if (loadedbytes == totalbytes) { play(); } else { gotoAndPlay (1); }
Frame 3
stop(); _root.coinz = 0; _root.health = 100; _root.points = 0; runspeed = 1.25; _quality = "High";
Frame 4
_root.passWord = "";
Instance of Symbol 36 MovieClip in Frame 4
on (keyPress "<Enter>") { if (_root.passWord == "bounce") { _root.gotoAndPlay("lvl2"); } else if (_root.passWord == "boing") { _root.gotoAndPlay("lvl3"); } else if (_root.passWord == "roll") { _root.gotoAndPlay("lvl4"); } else if (_root.passWord == "ball") { _root.gotoAndPlay("lvl5"); } else { _root.passWord = "Nice try"; } }
Instance of Symbol 63 MovieClip "coina" in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 69 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 76 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Frame 93
_root.circle._x = 0; _root.circle._y = 316.9; _root.goal._y = 164.5; _root.goal._x = 24.1; stop(); _root.coinz = 0; _root.health = 100; _root.points = 0; runspeed = 1.25;
Instance of Symbol 96 MovieClip in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 99 MovieClip in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } }
Instance of Symbol 101 MovieClip in Frame 93
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 93
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 93
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 63 MovieClip "coina" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinb" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinc" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coind" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coine" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinf" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coing" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 107 MovieClip "circle" in Frame 93
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 113 MovieClip in Frame 93
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } }
Frame 94
_root.circle._x = 489; _root.circle._y = 47.4; _root.goal._y = 334.4; _root.goal._x = 21;
Instance of Symbol 63 MovieClip "coinh" in Frame 94
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coini" in Frame 94
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinj" in Frame 94
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Frame 95
_root.goal._x = 21; _root.goal._y = 136;
Instance of Symbol 63 MovieClip "coink" in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinl" in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinm" in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 69 MovieClip in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Frame 96
_root.goal._x = 20; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 63 MovieClip "coinp" in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinq" in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinr" in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coino" in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinn" in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Frame 97
_root.circle._x = 173.5; _root.circle._y = 340.45; _quality = "High";
Instance of Symbol 117 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.play(); } }
Instance of Symbol 97 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 96 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 119 MovieClip in Frame 97
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 97
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 121 MovieClip in Frame 97
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 63 MovieClip "coins" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coint" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinu" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinv" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinw" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinx" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coiny" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinz" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaa" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinab" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinac" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinad" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinae" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaf" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinag" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinah" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinai" in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 107 MovieClip "circle" in Frame 97
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 15; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 131 MovieClip in Frame 222
onClipEvent (load) { if (_root.coinz >= 35) { _root.gotoAndPlay("bonus"); } else { _root.gotoAndPlay("gainpassword"); } }
Frame 295
_root.points = _root.points + 500;
Frame 600
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530; stop(); _root.coinz = 0;
Instance of Symbol 96 MovieClip in Frame 600
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 600
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 99 MovieClip in Frame 600
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } }
Instance of Symbol 96 MovieClip in Frame 600
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 600
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 101 MovieClip in Frame 600
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 600
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 600
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 600
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 600
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 107 MovieClip "circle" in Frame 600
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 113 MovieClip in Frame 600
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } }
Frame 601
_root.circle._y = 201.9; _root.circle._x = 530; _root.goal._x = 20.1; _root.goal._y = 334.45;
Instance of Symbol 101 MovieClip in Frame 601
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 601
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 63 MovieClip "coinad" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinae" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaf" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinag" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinah" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinai" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaj" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinak" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinal" in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 76 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 601
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Frame 602
_root.circle._y = 334.45; _root.circle._x = 530; _root.goalb._x = 530; _root.goalb._y = 67.5;
Instance of Symbol 101 MovieClip in Frame 602
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 602
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 602
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 602
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 602
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 69 MovieClip in Frame 602
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 63 MovieClip "coinam" in Frame 602
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinan" in Frame 602
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinao" in Frame 602
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinap" in Frame 602
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 107 MovieClip "circle" in Frame 602
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Frame 603
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 101 MovieClip in Frame 603
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 603
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 603
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 63 MovieClip "coinav" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaw" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaq" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinar" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinas" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinat" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinau" in Frame 603
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 107 MovieClip "circle" in Frame 603
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Frame 604
_root.circle._y = 134.355; _root.circle._x = 530;
Instance of Symbol 117 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.play(); } }
Instance of Symbol 97 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 154 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinay" in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinaz" in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinax" in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 81 MovieClip in Frame 604
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 131 MovieClip in Frame 729
onClipEvent (load) { if (_root.coinz >= 23) { _root.gotoAndPlay("bonus2"); } else { _root.gotoAndPlay("gainpassword2"); } }
Frame 802
_root.points = _root.points + 500;
Frame 1107
stop(); _root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530; _root.coinz = 0; function MakeRock() { z++; duplicateMovieClip (_root.rock, "rock" + z, z); setProperty("rock" + z, _x , random(550)); } _root.z = 0;
Instance of Symbol 96 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 99 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } if (this.hitTest(_root.rock)) { _root.rock.removeMovieClip(); } }
Instance of Symbol 96 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 101 MovieClip in Frame 1107
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 113 MovieClip in Frame 1107
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } }
Instance of Symbol 107 MovieClip "circle" in Frame 1107
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Frame 1108
_root.circle._y = 201.9; _root.circle._x = 530; _root.goal._x = 20.1; _root.goal._y = 94.4;
Instance of Symbol 101 MovieClip in Frame 1108
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 174 MovieClip in Frame 1108
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Frame 1109
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 199 MovieClip in Frame 1109
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y + 3.75; } }
Frame 1110
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 101 MovieClip in Frame 1110
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 1110
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 201 MovieClip in Frame 1110
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 101 MovieClip in Frame 1110
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 63 MovieClip "coinaz" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinba" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbl" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbc" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbd" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbb" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbf" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbg" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbe" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbi" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbj" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbh" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbk" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbm" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Instance of Symbol 63 MovieClip "coinbn" in Frame 1110
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Frame 1111
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530; function MakeRock() { z++; duplicateMovieClip (_root.rock, "rock" + z, z); setProperty("rock" + z, _x , random(550)); } _root.z = 0;
Instance of Symbol 96 MovieClip in Frame 1111
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1111
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 99 MovieClip in Frame 1111
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } }
Instance of Symbol 117 MovieClip in Frame 1111
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.play(); } }
Instance of Symbol 107 MovieClip "circle" in Frame 1111
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 131 MovieClip in Frame 1236
onClipEvent (load) { if (_root.coinz >= 15) { _root.gotoAndPlay("bonus3"); } else { _root.gotoAndPlay("gainpassword3"); } }
Frame 1309
_root.points = _root.points + 500;
Frame 1612
stop(); _root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 225; _root.circle._x = 530; _root.coinz = 0; function MakeRock() { z++; duplicateMovieClip (_root.rock, "rock" + z, z); setProperty("rock" + z, _x , random(550)); } _root.z = 0;
Instance of Symbol 96 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 96 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 220 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.nextFrame(); } }
Instance of Symbol 222 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } }
Instance of Symbol 101 MovieClip in Frame 1612
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 107 MovieClip "circle" in Frame 1612
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 113 MovieClip in Frame 1612
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } } onClipEvent (enterFrame) { if (_root.thing >= 5) { _root.play(); } }
Frame 1613
_root.thing = 0;
Instance of Symbol 97 MovieClip in Frame 1613
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y + 6; } }
Instance of Symbol 97 MovieClip in Frame 1613
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y - 6; } }
Instance of Symbol 238 MovieClip "circle" in Frame 1613
onClipEvent (enterFrame) { if (Key.isDown(39)) { this._x = this._x + 6; } if (Key.isDown(38)) { this._y = this._y - 6; } if (Key.isDown(37)) { this._x = this._x - 6; } if (Key.isDown(40)) { this._y = this._y + 6; } }
Frame 1614
_root.stop(); _root.thing = 0;
Instance of Symbol 284 MovieClip in Frame 1614
onClipEvent (enterFrame) { if (_root.circle._x > _x) { _x = (_x + 3); } } onClipEvent (enterFrame) { if (_root.circle._x < _x) { _x = (_x - 3); } } onClipEvent (enterFrame) { if (_root.circle._y > _y) { _y = (_y + 3); } } onClipEvent (enterFrame) { if (_root.circle._y < _y) { _y = (_y - 3); } }
Frame 1615
_root.thing = 0; stop();
Instance of Symbol 99 MovieClip in Frame 1616
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } }
Instance of Symbol 117 MovieClip in Frame 1616
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.play(); } }
Instance of Symbol 101 MovieClip in Frame 1616
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 289 MovieClip "circle" in Frame 1616
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Frame 1617
function MakeRock() { z++; duplicateMovieClip (_root.rock, "rock" + z, z); setProperty("rock" + z, _x , random(550)); } _root.z = 0;
Frame 1957
stop(); _root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 225; _root.circle._x = 530; _root.coinz = 0; function MakeRock() { z++; duplicateMovieClip (_root.rock, "rock" + z, z); setProperty("rock" + z, _x , random(550)); } _root.z = 0;
Instance of Symbol 99 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.gotoAndPlay("gameover", "gameover"); } if (this.hitTest(_root.rock)) { _root.rock.removeMovieClip(); } }
Instance of Symbol 96 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 96 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 101 MovieClip in Frame 1957
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 113 MovieClip in Frame 1957
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } }
Instance of Symbol 107 MovieClip "circle" in Frame 1957
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Frame 1958
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 225; _root.circle._x = 530;
Frame 1959
_root.goal._x = 20.1; _root.goal._y = 334.45; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 101 MovieClip in Frame 1959
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Instance of Symbol 69 MovieClip in Frame 1959
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Frame 1960
_root.goalb._x = 530; _root.goalb._y = 135; _root.circle._y = 334.45; _root.circle._x = 530;
Instance of Symbol 96 MovieClip in Frame 1960
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1960
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 101 MovieClip in Frame 1960
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 311 MovieClip "circle" in Frame 1960
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } }
Instance of Symbol 76 MovieClip in Frame 1960
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.nextFrame(); } }
Frame 1961
_root.circle._x = 275; _root.circle._y = 334.45; _root.enemyhealth = 100;
Instance of Symbol 101 MovieClip in Frame 1961
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 96 MovieClip in Frame 1961
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 1961
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 345 MovieClip in Frame 1961
onClipEvent (load) { _name = "ufo"; }
Instance of Symbol 311 MovieClip "circle" in Frame 1961
onClipEvent (load) { fall = false; jump = 0; speed = 6; jumpheight = 16; maxfall = -Infinity; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(32) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; } if (jump != undefined) { if (jump > maxfall) { jump--; } _y = (_y - jump); } } onClipEvent (enterFrame) { if (Key.isDown(37)) { _x = (_x - speed); } if (Key.isDown(39)) { _x = (_x + speed); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ufo.headspin.thingie)) { if (_root.bossdown) { _root.gotoAndPlay("hurt"); } } }
Instance of Symbol 350 MovieClip in Frame 1961
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } }
Instance of Symbol 350 MovieClip in Frame 1962
onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("gameover"); } } onClipEvent (enterFrame) { if (_root.enemyhealth <= 0) { _root.gotoAndPlay("cutscene"); } } onClipEvent (load) { Xcoordinate = _root.circle._x; Ycoordinate = _root.circle._y; }
Instance of Symbol 345 MovieClip "ufo" in Frame 2045
onClipEvent (enterFrame) { this.gotoAndStop(2); } onClipEvent (load) { _name = "ufo"; }
Frame 2190
_root.bossdown = 0;
Instance of Symbol 345 MovieClip "ufo" in Frame 2190
onClipEvent (enterFrame) { this.gotoAndStop(1); } onClipEvent (load) { _name = "ufo"; }
Frame 2210
_root.bossdown = 1;
Instance of Symbol 345 MovieClip "ufo" in Frame 2210
onClipEvent (enterFrame) { this.gotoAndStop(2); } onClipEvent (load) { _name = "ufo"; }
Frame 2211
_root.bossdown = 1;
Instance of Symbol 345 MovieClip "ufo" in Frame 2211
onClipEvent (enterFrame) { this.gotoAndStop(3); } onClipEvent (load) { _name = "ufo"; }
Frame 2217
_root.bossdown = 1;
Frame 2262
_root.bossdown = 1;
Instance of Symbol 345 MovieClip "ufo" in Frame 2262
onClipEvent (load) { _name = "ufo"; }
Frame 2335
_root.gotoAndPlay("Start");
Frame 2336
_root.enemyhealth = _root.enemyhealth - 10;
Instance of Symbol 360 MovieClip in Frame 2388
onClipEvent (load) { if (_root.enemyhealth <= 30) { _root.play(); } else if (_root.enemyhealth > 30) { _root.gotoAndPlay("Start"); } }
Instance of Symbol 101 MovieClip in Frame 2389
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Frame 2416
_root.circle.play(); _root.enemyhealth = _root.enemyhealth + 30; _root.circle.play(); _root.health = _root.health + 50;
Instance of Symbol 97 MovieClip in Frame 2416
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y - 6; } }
Instance of Symbol 97 MovieClip in Frame 2416
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y + 6; } }
Instance of Symbol 373 MovieClip "circle" in Frame 2416
onClipEvent (enterFrame) { if (Key.isDown(39)) { this._x = this._x + 6; } if (Key.isDown(38)) { this._y = this._y - 6; } if (Key.isDown(37)) { this._x = this._x - 6; } if (Key.isDown(40)) { this._y = this._y + 6; } }
Frame 2446
stop();
Instance of Symbol 399 MovieClip "bomb" in Frame 2446
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.play(); } }
Frame 2447
_root.circle._x = Xcoordinate; _root.circle._y = Ycoordinate;
Instance of Symbol 96 MovieClip in Frame 2597
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x - 6; } }
Instance of Symbol 97 MovieClip in Frame 2597
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 97 MovieClip in Frame 2597
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._y = _root.circle._y - 6; } }
Frame 3972
stop();
Frame 3999
stop();
Symbol 7 MovieClip Frame 1
stop();
Symbol 17 Button
on (press) { _root.nextFrame(); }
Symbol 20 Button
on (press) { gotoAndPlay (6); }
Symbol 23 Button
on (press) { gotoAndStop ("info"); }
Symbol 26 Button
on (press) { play(); }
Symbol 27 MovieClip Frame 1
_quality = "High"; stop();
Symbol 27 MovieClip Frame 2
_quality = "Medium"; stop();
Symbol 27 MovieClip Frame 3
_quality = "Low"; stop();
Symbol 44 MovieClip Frame 1
stop();
Symbol 47 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 51 MovieClip Frame 75
Left.gotoAndStop(2);
Symbol 51 MovieClip Frame 131
Left.gotoAndStop(1);
Symbol 51 MovieClip Frame 155
Right.gotoAndStop(2);
Symbol 51 MovieClip Frame 210
Right.gotoAndStop(1);
Symbol 51 MovieClip Frame 241
Space.gotoAndStop(2);
Symbol 51 MovieClip Frame 256
Space.gotoAndStop(1);
Symbol 51 MovieClip Frame 271
gotoAndPlay (45);
Symbol 55 Button
on (press) { gotoAndPlay ("lvl1"); }
Symbol 63 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 2
stop(); _root.coinz = _root.coinz + 1; _root.points = _root.points + 10;
Instance of Symbol 66 MovieClip "red" in Symbol 67 MovieClip Frame 1
onClipEvent (enterFrame) { if (_name == "red") { count++; if (((count % 2) / _root.runspeed) == 0) { this.duplicateMovieClip("copy" + count, count); } } else { _yscale = (_yscale - (15 / _root.runspeed)); _xscale = (_yscale - (15 / _root.runspeed)); if (_xscale <= 0) { this.removeMovieClip(); } _alpha = (_alpha - (5 / _root.runspeed)); _y = (_y - (5 / _root.runspeed)); if (Math.random() < 0.5) { _x = (_x - ((Math.random() * 2) / _root.runspeed)); } else { _x = (_x + ((Math.random() * 2) / _root.runspeed)); } } }
Instance of Symbol 66 MovieClip "yellow" in Symbol 68 MovieClip Frame 1
onClipEvent (enterFrame) { if (_name == "yellow") { count++; if (((count % 2) / _root.runspeed) == 0) { this.duplicateMovieClip("copy" + count, count); } } else { _yscale = (_yscale - (15 / _root.runspeed)); _xscale = (_yscale - (15 / _root.runspeed)); if (_xscale <= 0) { this.removeMovieClip(); } _alpha = (_alpha - (5 / _root.runspeed)); _y = (_y - (5 / _root.runspeed)); if (Math.random() < 0.5) { _x = (_x - ((Math.random() * 2) / _root.runspeed)); } else { _x = (_x + ((Math.random() * 2) / _root.runspeed)); } } }
Symbol 76 MovieClip Frame 1
stop();
Instance of Symbol 74 MovieClip in Symbol 76 MovieClip Frame 1
/* no clip actions */
Symbol 76 MovieClip Frame 2
_root.points = _root.points + 75; _root.health = _root.health + 15;
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
_root.coinz--; _root.points = _root.points - 10;
Instance of Symbol 104 MovieClip "maingoal" in Symbol 105 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle.play(); } }
Symbol 107 MovieClip Frame 10
stop();
Symbol 107 MovieClip Frame 19
_root.nextFrame(); _root.points = _root.points + 100;
Instance of Symbol 104 MovieClip "maingoal" in Symbol 144 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle.play(); } }
Symbol 161 MovieClip Frame 20
_root.makeRock();
Symbol 163 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 3
_root.rock.gotoAndStop(31); stop(); _root.health = _root.health - 10;
Instance of Symbol 163 MovieClip in Symbol 164 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.play(); } }
Symbol 164 MovieClip Frame 31
stop(); _root.rock.removeMovieClip();
Instance of Symbol 171 MovieClip in Symbol 174 MovieClip Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Symbol 199 MovieClip Frame 155
_root.health = 0;
Instance of Symbol 204 MovieClip in Symbol 207 MovieClip Frame 1
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 206 MovieClip in Symbol 207 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health = 0; } }
Instance of Symbol 204 MovieClip in Symbol 207 MovieClip Frame 20
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Symbol 268 MovieClip Frame 1
stop();
Symbol 268 MovieClip Frame 30
stop(); _root.thing++; _root.points = _root.points + 100;
Instance of Symbol 268 MovieClip in Symbol 269 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.play(); } }
Symbol 274 MovieClip Frame 1
stop();
Symbol 274 MovieClip Frame 10
_root.health = 0;
Instance of Symbol 274 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.play(); } }
Symbol 282 MovieClip Frame 1
stop();
Symbol 282 MovieClip Frame 10
stop(); _root.gotoAndPlay("gameover");
Instance of Symbol 282 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { this.play(); } }
Symbol 286 MovieClip Frame 100
_root.nextFrame();
Instance of Symbol 296 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health = 0; } }
Instance of Symbol 297 MovieClip in Symbol 298 MovieClip Frame 1
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { _root.report.text = (Math.round(_root.circle.yMax) + " ") + Math.round(yMin); xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((_root.circle.xMax > xMin) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if ((_root.circle.yMax - (_root.circle.jump * 2)) > yMin) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(_root.circle.yMax) > Math.round(yMin)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (_root.circle.xmin > xmax)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (_root.circle.ymin > ymax)) && (_root.circle.jump > -1)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (_root.circle.ymax > ymin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if ((((((_root.circle.ymax - _root.circle.jump) > ymin) && (_root.circle.xMin < xMax)) && (_root.circle.xMax > xMin)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Symbol 298 MovieClip Frame 130
stop();
Instance of Symbol 304 MovieClip in Symbol 305 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health = 0; } }
Symbol 311 MovieClip Frame 1
stop();
Symbol 311 MovieClip Frame 15
_root.gotoAndPlay("ufo");
Instance of Symbol 333 MovieClip in Symbol 338 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Instance of Symbol 335 MovieClip in Symbol 338 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.circle._x = _root.circle._x + 6; } }
Symbol 344 MovieClip Frame 1
_root.stop();
Symbol 344 MovieClip Frame 2
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 3
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 4
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 5
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 6
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 7
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 8
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 9
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 10
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 11
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 12
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 13
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 14
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 15
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 16
_root.ufo._y = _root.ufo._y - 10;
Symbol 344 MovieClip Frame 17
_root.ufo._y = _root.ufo._y - 10;
Symbol 345 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 2
stop();
Instance of Symbol 326 MovieClip in Symbol 345 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Symbol 345 MovieClip Frame 3
stop();
Instance of Symbol 330 MovieClip in Symbol 345 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Symbol 345 MovieClip Frame 4
stop();
Symbol 373 MovieClip Frame 1
stop();
Symbol 373 MovieClip Frame 13
_root.health = _root.health + 50;
Symbol 377 MovieClip Frame 10
gotoAndPlay (2);
Instance of Symbol 386 MovieClip in Symbol 387 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health = _root.health - 50; } }
Symbol 399 MovieClip Frame 1
stop();
Instance of Symbol 378 MovieClip in Symbol 399 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.circle._x > _root.bomb._x) { _root.bomb._x = _root.bomb._x + 3; } } onClipEvent (enterFrame) { if (_root.circle._x < _root.bomb._x) { _root.bomb._x = _root.bomb._x - 3; } } onClipEvent (enterFrame) { if (_root.circle._y > _root.bomb._y) { _root.bomb._y = _root.bomb._y + 3; } } onClipEvent (enterFrame) { if (_root.circle._y < _root.bomb._y) { _root.bomb._y = _root.bomb._y - 3; } }
Instance of Symbol 387 MovieClip in Symbol 399 MovieClip Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.circle)) { _root.health--; } }
Symbol 399 MovieClip Frame 60
_root.enemyhealth = _root.enemyhealth - 10;
Instance of Symbol 378 MovieClip in Symbol 399 MovieClip Frame 61
onClipEvent (enterFrame) { if (_root.circle._x > _x) { _root.bomb._x = _root.bomb._x + 3; } } onClipEvent (enterFrame) { if (_root.circle._x < _x) { _root.bomb._x = _root.bomb._x - 3; } } onClipEvent (enterFrame) { if (_root.circle._y > _y) { _root.bomb._y = _root.bomb._y + 3; } } onClipEvent (enterFrame) { if (_root.circle._y < _y) { _root.bomb._y = _root.bomb._y - 3; } }
Symbol 440 Button
on (release) { _root.gotoAndStop("menu"); }
Symbol 448 Button
on (press) { _root.gotoAndStop("menu"); }

Library Items

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

Instance Names

"loader"Frame 1Symbol 7 MovieClip
"passWord"Frame 4Symbol 33 EditableText
"coina"Frame 5Symbol 63 MovieClip
"coina"Frame 93Symbol 63 MovieClip
"goal"Frame 93Symbol 105 MovieClip
"coinb"Frame 93Symbol 63 MovieClip
"coinc"Frame 93Symbol 63 MovieClip
"coind"Frame 93Symbol 63 MovieClip
"coine"Frame 93Symbol 63 MovieClip
"coinf"Frame 93Symbol 63 MovieClip
"coing"Frame 93Symbol 63 MovieClip
"circle"Frame 93Symbol 107 MovieClip
"coinh"Frame 94Symbol 63 MovieClip
"coini"Frame 94Symbol 63 MovieClip
"coinj"Frame 94Symbol 63 MovieClip
"coink"Frame 95Symbol 63 MovieClip
"coinl"Frame 95Symbol 63 MovieClip
"coinm"Frame 95Symbol 63 MovieClip
"coinp"Frame 96Symbol 63 MovieClip
"coinq"Frame 96Symbol 63 MovieClip
"coinr"Frame 96Symbol 63 MovieClip
"coino"Frame 96Symbol 63 MovieClip
"coinn"Frame 96Symbol 63 MovieClip
"coins"Frame 97Symbol 63 MovieClip
"coint"Frame 97Symbol 63 MovieClip
"coinu"Frame 97Symbol 63 MovieClip
"coinv"Frame 97Symbol 63 MovieClip
"coinw"Frame 97Symbol 63 MovieClip
"coinx"Frame 97Symbol 63 MovieClip
"coiny"Frame 97Symbol 63 MovieClip
"coinz"Frame 97Symbol 63 MovieClip
"coinaa"Frame 97Symbol 63 MovieClip
"coinab"Frame 97Symbol 63 MovieClip
"coinac"Frame 97Symbol 63 MovieClip
"coinad"Frame 97Symbol 63 MovieClip
"coinae"Frame 97Symbol 63 MovieClip
"coinaf"Frame 97Symbol 63 MovieClip
"coinag"Frame 97Symbol 63 MovieClip
"coinah"Frame 97Symbol 63 MovieClip
"coinai"Frame 97Symbol 63 MovieClip
"circle"Frame 97Symbol 107 MovieClip
"circle"Frame 600Symbol 107 MovieClip
"goal"Frame 600Symbol 105 MovieClip
"coinad"Frame 601Symbol 63 MovieClip
"coinae"Frame 601Symbol 63 MovieClip
"coinaf"Frame 601Symbol 63 MovieClip
"coinag"Frame 601Symbol 63 MovieClip
"coinah"Frame 601Symbol 63 MovieClip
"coinai"Frame 601Symbol 63 MovieClip
"coinaj"Frame 601Symbol 63 MovieClip
"coinak"Frame 601Symbol 63 MovieClip
"coinal"Frame 601Symbol 63 MovieClip
"coinam"Frame 602Symbol 63 MovieClip
"coinan"Frame 602Symbol 63 MovieClip
"coinao"Frame 602Symbol 63 MovieClip
"coinap"Frame 602Symbol 63 MovieClip
"goalb"Frame 602Symbol 144 MovieClip
"circle"Frame 602Symbol 107 MovieClip
"coinav"Frame 603Symbol 63 MovieClip
"coinaw"Frame 603Symbol 63 MovieClip
"coinaq"Frame 603Symbol 63 MovieClip
"coinar"Frame 603Symbol 63 MovieClip
"coinas"Frame 603Symbol 63 MovieClip
"coinat"Frame 603Symbol 63 MovieClip
"coinau"Frame 603Symbol 63 MovieClip
"goal"Frame 603Symbol 105 MovieClip
"circle"Frame 603Symbol 107 MovieClip
"coinay"Frame 604Symbol 63 MovieClip
"coinaz"Frame 604Symbol 63 MovieClip
"coinax"Frame 604Symbol 63 MovieClip
"rock"Frame 1107Symbol 164 MovieClip
"goal"Frame 1107Symbol 105 MovieClip
"circle"Frame 1107Symbol 107 MovieClip
"coinaz"Frame 1110Symbol 63 MovieClip
"coinba"Frame 1110Symbol 63 MovieClip
"coinbl"Frame 1110Symbol 63 MovieClip
"coinbc"Frame 1110Symbol 63 MovieClip
"coinbd"Frame 1110Symbol 63 MovieClip
"coinbb"Frame 1110Symbol 63 MovieClip
"coinbf"Frame 1110Symbol 63 MovieClip
"coinbg"Frame 1110Symbol 63 MovieClip
"coinbe"Frame 1110Symbol 63 MovieClip
"coinbi"Frame 1110Symbol 63 MovieClip
"coinbj"Frame 1110Symbol 63 MovieClip
"coinbh"Frame 1110Symbol 63 MovieClip
"coinbk"Frame 1110Symbol 63 MovieClip
"coinbm"Frame 1110Symbol 63 MovieClip
"coinbn"Frame 1110Symbol 63 MovieClip
"circle"Frame 1111Symbol 107 MovieClip
"circle"Frame 1612Symbol 107 MovieClip
"circle"Frame 1613Symbol 238 MovieClip
"thing1"Frame 1613Symbol 270 MovieClip
"thing3"Frame 1613Symbol 270 MovieClip
"thing4"Frame 1613Symbol 270 MovieClip
"thing2"Frame 1613Symbol 270 MovieClip
"thing5"Frame 1613Symbol 270 MovieClip
"dsafadsfasdf"Frame 1614Symbol 270 MovieClip
"dfsfsfasdf"Frame 1614Symbol 270 MovieClip
"dsafasdfasdf"Frame 1614Symbol 270 MovieClip
"dasdfasdf"Frame 1614Symbol 270 MovieClip
"dasfasdf"Frame 1614Symbol 270 MovieClip
"circle"Frame 1616Symbol 289 MovieClip
"goal"Frame 1957Symbol 105 MovieClip
"circle"Frame 1957Symbol 107 MovieClip
"rock"Frame 1959Symbol 164 MovieClip
"circle"Frame 1960Symbol 311 MovieClip
"goalb"Frame 1960Symbol 144 MovieClip
"circle"Frame 1961Symbol 311 MovieClip
"ufo"Frame 2045Symbol 345 MovieClip
"ufo"Frame 2190Symbol 345 MovieClip
"ufo"Frame 2210Symbol 345 MovieClip
"ufo"Frame 2211Symbol 345 MovieClip
"ufo"Frame 2262Symbol 345 MovieClip
"hurtufo"Frame 2336Symbol 359 MovieClip
"circle"Frame 2389Symbol 311 MovieClip
"ufo"Frame 2401Symbol 345 MovieClip
"circle"Frame 2416Symbol 373 MovieClip
"bomb"Frame 2446Symbol 399 MovieClip
"circle"Frame 2448Symbol 373 MovieClip
"Left"Symbol 51 MovieClip Frame 45Symbol 44 MovieClip
"Right"Symbol 51 MovieClip Frame 45Symbol 47 MovieClip
"Space"Symbol 51 MovieClip Frame 45Symbol 50 MovieClip
"red"Symbol 67 MovieClip Frame 1Symbol 66 MovieClip
"yellow"Symbol 68 MovieClip Frame 1Symbol 66 MovieClip
"maingoal"Symbol 105 MovieClip Frame 1Symbol 104 MovieClip
"maingoal"Symbol 144 MovieClip Frame 1Symbol 104 MovieClip
"thingie"Symbol 338 MovieClip Frame 1Symbol 337 MovieClip
"headspin"Symbol 345 MovieClip Frame 3Symbol 338 MovieClip

Labels

"menu"Frame 3
"password"Frame 4
"info"Frame 5
"bonus"Frame 223
"gainpassword"Frame 322
"lvl2"Frame 512
"bonus2"Frame 730
"gainpassword2"Frame 829
"lvl3"Frame 1019
"bonus3"Frame 1237
"gainpassword3"Frame 1336
"lvl4"Frame 1524
"gainpassword4"Frame 1681
"lvl5"Frame 1869
"ufo"Frame 1961
"Start"Frame 1962
"hurt"Frame 2336
"cutscene"Frame 2448
"gameover"Frame 3973
"hurt"Symbol 345 MovieClip Frame 4

Dynamic Text Variables

percentbytesSymbol 8 EditableText"100"
passWordSymbol 33 EditableText""
coinzSymbol 109 EditableText"0"
healthSymbol 111 EditableText"100"
pointsSymbol 115 EditableText"0"
coinzSymbol 127 EditableText"0"
pointsSymbol 129 EditableText"0"
pointsSymbol 134 EditableText"0"
coinzSymbol 135 EditableText"0"
coinzSymbol 139 EditableText"0"
healthSymbol 140 EditableText"100"
pointsSymbol 141 EditableText"0"
coinzSymbol 146 EditableText"0"
healthSymbol 147 EditableText"100"
pointsSymbol 148 EditableText"0"
coinzSymbol 150 EditableText"0"
healthSymbol 151 EditableText"100"
pointsSymbol 152 EditableText"0"
coinzSymbol 156 EditableText"0"
pointsSymbol 157 EditableText"0"
coinzSymbol 166 EditableText"0"
healthSymbol 167 EditableText"100"
pointsSymbol 168 EditableText"0"
coinzSymbol 209 EditableText"0"
healthSymbol 210 EditableText"100"
pointsSymbol 211 EditableText"0"
coinzSymbol 213 EditableText"0"
pointsSymbol 214 EditableText"0"
pointsSymbol 216 EditableText"0"
coinzSymbol 217 EditableText"0"
coinzSymbol 224 EditableText"0"
healthSymbol 225 EditableText"100"
pointsSymbol 226 EditableText"0"
pointsSymbol 291 EditableText"0"
coinzSymbol 300 EditableText"0"
healthSymbol 301 EditableText"100"
pointsSymbol 302 EditableText"0"
coinzSymbol 308 EditableText"0"
healthSymbol 309 EditableText"100"
pointsSymbol 310 EditableText"0"
healthSymbol 346 EditableText"100"
enemyhealthSymbol 348 EditableText"100"
healthSymbol 351 EditableText"100"
enemyhealthSymbol 352 EditableText"100"




http://swfchan.com/3/11615/info.shtml
Created: 7/6 -2019 01:25:09 Last modified: 7/6 -2019 01:25:09 Server time: 15/05 -2024 13:32:34