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

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

Master Shosho.swf

This is the info page for
Flash #23845

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


Text
Concept, Music, Voice,
and Coding
Steve Lim
Artwork
Steve Lim & Max Mao
Level Deisgns
Steve Lim & Max Mao

XIN

SURFACE

SURFACE

One GUN

One GUN

HOME

T

N

E

M

I

A

R

1

.

e

F

i

L

Watch It!

Watch It!

No Exit

Hearst

Case1

Animated series

More animatins and games at www.lifepoint1.com

LOADING..

Copyright ⓒ 2008
Steven Lim  | Max Mao
Life.1 Entertainment

1

.

e

F

i

L

T

N

E

M

I

A

R

Click here or

1

S

Move with

Jump with

Duck with

D

S

Start with

Collect all the food
to open the exit

sho

Stage 00

Game Over

STAGE
CLEAR!

GET
READY!

3

6

8

2

11

14

16

20

12

10

15

13

7

18

21

5

4

9

19

17

GAME
OVER

WOW!

You did it!

You cleared all
21 stages!!

Your skills are
AMAZING!

Sho!
What do we do now?

LET'S
DANCE!!

Thank You
For Playing!

Thank You
For Playing!

ActionScript [AS1/AS2]

Frame 1
function deadClick() { } function gotoMySite() { getURL ("http://www.lifepoint1.com", "_top"); } var myMenu = new ContextMenu(); var mySiteLink = new ContextMenuItem("Lifepoint1", gotoMySite); myMenu.customItems.push(mySiteLink, copyrightNotice); _root.menu = myMenu; LOADED = Math.round(getBytesLoaded()); TOTAL = Math.round(getBytesTotal()); PERCENT = LOADED / TOTAL; BAR._width = PERCENT * 250; TEXT = Math.round(PERCENT * 100) + "%"; if (LOADED == TOTAL) { gotoAndStop ("title"); }
Frame 2
gotoAndPlay (1);
Frame 4
function __com_mochibot__(swfid, mc, lv, trk) { var x; var g; var s; var fv; var sb; var u; var res; var mb; var mbc; mb = "__mochibot__"; mbc = "mochibot.com"; g = (_global ? (_global) : (_level0._root)); if (g[mb + swfid]) { return(g[mb + swfid]); } s = System.security; x = mc._root.getSWFVersion; fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5))); if (!s) { s = {}; } sb = s.sandboxType; if (sb == "localWithFile") { return(null); } x = s.allowDomain; if (x) { s.allowDomain(mbc); } x = s.allowInsecureDomain; if (x) { s.allowInsecureDomain(mbc); } u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : ""); lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv)))); g[mb + "level"] = lv; if (fv == 5) { res = "_level" + lv; if (!eval (res)) { loadMovieNum (u, lv); } } else { res = mc.createEmptyMovieClip(mb + swfid, lv); res.loadMovie(u); } return(res); } __com_mochibot__("a51d5caa", this, 10301, true); stop();
Frame 8
lives = 20; stop(); level = "Stage 01"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 8
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 183 MovieClip "ground" in Frame 8
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 198 MovieClip "goal" in Frame 8
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 1) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 8
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 8
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 8
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 218 MovieClip in Frame 8
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 236 MovieClip in Frame 8
onClipEvent (enterFrame) { if (!_root.mover.rep) { this.gotoAndStop("sho"); } else { gotoAndStop (1); } }
Instance of Symbol 239 MovieClip in Frame 8
onClipEvent (enterFrame) { if ((Key.isDown(40) and _root.ground.hitTest(_root.mover)) and (_root.game == "begin")) { this.gotoAndStop("uknow"); } else { gotoAndStop (1); } }
Instance of Symbol 243 MovieClip in Frame 8
onClipEvent (enterFrame) { if (_root.game == "over") { this.gotoAndStop("pain"); } else { gotoAndStop (1); } }
Instance of Symbol 246 MovieClip "die" in Frame 8
onClipEvent (enterFrame) { if (_root.mover.hitTest(this)) { this.play(1); _root.shosho.gotoAndStop("dead"); _root.game = "stop"; _root.lives = _root.lives - 1; } if (_root.lives < 0) { _root.lives = "Game Over"; } }
Frame 9
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 10
stop(); _root.gotoAndStop("intro");
Frame 11
stop(); level = "Stage 03"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 11
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 286 MovieClip "ground" in Frame 11
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 198 MovieClip "goal" in Frame 11
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 11
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 11
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 11
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 287 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 288 MovieClip in Frame 11
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 288 MovieClip in Frame 11
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 290 MovieClip in Frame 11
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 290 MovieClip in Frame 11
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 12
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 13
stop(); _root.gotoAndStop("intro");
Frame 14
stop(); level = "Stage 06"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 14
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 293 MovieClip "ground" in Frame 14
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 198 MovieClip "goal" in Frame 14
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 14
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 14
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 14
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 288 MovieClip in Frame 14
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 294 MovieClip in Frame 14
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 295 MovieClip in Frame 14
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 298 MovieClip in Frame 14
onClipEvent (load) { gravity = true; fall = 5; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (roll == true) { this._x = this._x + speed; } if (_root.ground.hitTest(this._x, this._y, true)) { roll = true; gravity = false; } else if (!_root.ground.hitTest(this._x, this._y, true)) { gravity = true; } if (_root.right.hitTest(this)) { speed = -speed; } else if (_root.left.hitTest(this)) { speed = -speed; } if (_root.die.hitTest(this)) { roll = false; this._x = _root.barrel._x; this._y = _root.barrel._y; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 298 MovieClip in Frame 14
onClipEvent (load) { gravity = true; fall = 5; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (roll == true) { this._x = this._x + speed; } if (_root.ground.hitTest(this._x, this._y, true)) { roll = true; gravity = false; } else if (!_root.ground.hitTest(this._x, this._y, true)) { gravity = true; } if (_root.right.hitTest(this)) { speed = -speed; } else if (_root.left.hitTest(this)) { speed = -speed; } if (_root.die.hitTest(this)) { roll = false; this._x = _root.barrel._x; this._y = _root.barrel._y; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 298 MovieClip in Frame 14
onClipEvent (load) { gravity = true; fall = 5; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (roll == true) { this._x = this._x + speed; } if (_root.ground.hitTest(this._x, this._y, true)) { roll = true; gravity = false; } else if (!_root.ground.hitTest(this._x, this._y, true)) { gravity = true; } if (_root.right.hitTest(this)) { speed = -speed; } else if (_root.left.hitTest(this)) { speed = -speed; } if (_root.die.hitTest(this)) { roll = false; this._x = _root.barrel._x; this._y = _root.barrel._y; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 15
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 16
stop(); _root.gotoAndStop("intro");
Frame 17
stop(); level = "Stage 08"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 17
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 310 MovieClip "ground" in Frame 17
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 315 MovieClip "goal" in Frame 17
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 17
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 17
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 17
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 316 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 318 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 321 MovieClip in Frame 17
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 17
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip in Frame 17
onClipEvent (enterFrame) { this._x = this._x + 10; if (this._x > 700) { this._x = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip "fire4" in Frame 17
onClipEvent (enterFrame) { this._x = this._x + 10; if (this._x > 700) { this._x = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 17
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 18
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 19
stop(); _root.gotoAndStop("intro");
Frame 20
stop(); level = "Stage 02"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 20
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 198 MovieClip "goal" in Frame 20
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 327 MovieClip "ground" in Frame 20
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 20
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 20
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 20
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 295 MovieClip in Frame 20
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 295 MovieClip in Frame 20
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 288 MovieClip in Frame 20
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 21
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 22
stop(); _root.gotoAndStop("intro");
Frame 23
stop(); level = "Stage 11"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 23
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 315 MovieClip "goal" in Frame 23
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 11) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 23
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 23
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 23
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 23
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 24
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 25
stop(); _root.gotoAndStop("intro");
Frame 26
stop(); level = "Stage 14"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 26
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 333 MovieClip "ground" in Frame 26
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 315 MovieClip "goal" in Frame 26
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 26
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 26
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 26
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 334 MovieClip in Frame 26
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 26
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 26
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 26
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 27
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 28
stop(); _root.gotoAndStop("intro");
Frame 29
stop(); level = "Stage 16"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 29
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 344 MovieClip "ground" in Frame 29
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 359 MovieClip "goal" in Frame 29
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 2) { this.gotoAndStop(2); } }
Instance of Symbol 359 MovieClip in Frame 29
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 4) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 29
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 29
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 29
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 218 MovieClip in Frame 29
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 218 MovieClip in Frame 29
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 218 MovieClip in Frame 29
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 218 MovieClip in Frame 29
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 361 MovieClip in Frame 29
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 30
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 31
stop(); _root.gotoAndStop("intro");
Frame 32
stop(); level = "Stage 20"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 32
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 359 MovieClip "goal" in Frame 32
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 0) { this.gotoAndStop(2); } }
Instance of Symbol 364 MovieClip "ground" in Frame 32
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 32
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 32
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 32
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 367 MovieClip in Frame 32
onClipEvent (enterFrame) { this._x = this._x - 5; this._y = this._y - -1.3; if (this._x < -10) { this._x = 666.5; this._y = 410; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 367 MovieClip in Frame 32
onClipEvent (enterFrame) { this._x = this._x - 5; this._y = this._y - -1.3; if (this._x < -10) { this._x = 666.5; this._y = 79; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 368 MovieClip in Frame 32
onClipEvent (enterFrame) { this._x = this._x - -5; this._y = this._y - -1.3; if (this._x > 700) { this._x = -38.5; this._y = 244; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 33
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 34
stop(); _root.gotoAndStop("intro");
Frame 35
stop(); level = "Stage 12"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 35
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 315 MovieClip "goal" in Frame 35
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 0) { this.gotoAndStop(2); } }
Instance of Symbol 371 MovieClip "ground" in Frame 35
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 35
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 35
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 35
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 321 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - -10; if (this._x > 700) { this._x = -500; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - -10; if (this._x > 700) { this._x = -500; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - -10; if (this._x > 700) { this._x = -500; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 324 MovieClip in Frame 35
onClipEvent (enterFrame) { this._x = this._x - -10; if (this._x > 700) { this._x = -500; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 36
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 37
stop(); _root.gotoAndStop("intro");
Frame 38
stop(); level = "Stage 10"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 38
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 315 MovieClip "goal" in Frame 38
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 12) { this.gotoAndStop(2); } }
Instance of Symbol 374 MovieClip "ground" in Frame 38
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 38
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 38
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 38
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 376 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 376 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 376 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 376 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 376 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 39
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 40
stop(); _root.gotoAndStop("intro");
Frame 41
stop(); level = "Stage 15"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 41
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 359 MovieClip "goal" in Frame 41
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 379 MovieClip "ground" in Frame 41
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 41
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 41
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 41
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 380 MovieClip in Frame 41
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 41
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 41
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 42
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 43
stop(); _root.gotoAndStop("intro");
Frame 44
stop(); level = "Stage 13"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 44
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 315 MovieClip "goal" in Frame 44
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 1) { this.gotoAndStop(2); } }
Instance of Symbol 389 MovieClip "ground" in Frame 44
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 44
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 44
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 44
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 334 MovieClip in Frame 44
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 298 MovieClip in Frame 44
onClipEvent (load) { gravity = true; fall = 5; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (roll == true) { this._x = this._x + speed; } if (_root.ground.hitTest(this._x, this._y, true)) { roll = true; gravity = false; } else if (!_root.ground.hitTest(this._x, this._y, true)) { gravity = true; } if (_root.right.hitTest(this)) { speed = -speed; } else if (_root.left.hitTest(this)) { speed = -speed; } if (_root.die.hitTest(this)) { roll = false; this._x = _root.barrel._x; this._y = _root.barrel._y; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 45
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 46
stop(); _root.gotoAndStop("intro");
Frame 47
stop(); level = "Stage 07"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 47
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 399 MovieClip "ground" in Frame 47
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 295 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 288 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 287 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 287 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 218 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 198 MovieClip "goal" in Frame 47
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 6) { this.gotoAndStop(2); } }
Instance of Symbol 294 MovieClip in Frame 47
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 200 MovieClip "mover" in Frame 47
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 47
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 47
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 401 MovieClip in Frame 47
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 47
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 47
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 47
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 48
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 49
stop(); _root.gotoAndStop("intro");
Frame 50
stop(); level = "Stage 18"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 50
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 407 MovieClip "ground" in Frame 50
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 359 MovieClip "goal" in Frame 50
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 44) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 50
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 50
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 50
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 50
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 401 MovieClip in Frame 50
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.top02.hitTest(this._x, this._y, true)) { up = false; down = true; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 50
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.top01.hitTest(this._x, this._y, true)) { up = false; down = true; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 51
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 52
stop(); _root.gotoAndStop("intro");
Frame 53
stop(); level = "Stage 21"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 53
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 412 MovieClip "ground" in Frame 53
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 359 MovieClip "goal" in Frame 53
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 13) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 53
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 53
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 53
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 335 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 295 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 316 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 318 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 334 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 287 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 317 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 288 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 418 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 418 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 418 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 416 MovieClip in Frame 53
onClipEvent (load) { gravity = true; fall = 10; speed = 5; roll = false; } onClipEvent (enterFrame) { if (gravity) { this._y = this._y + fall; } if (_root.die.hitTest(this)) { roll = false; this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 54
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 55
stop(); _root.gotoAndStop("intro");
Frame 56
stop(); level = "Stage 05"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 56
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 423 MovieClip "ground" in Frame 56
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 198 MovieClip "goal" in Frame 56
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 56
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 56
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 56
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 295 MovieClip in Frame 56
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 218 MovieClip in Frame 56
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 287 MovieClip in Frame 56
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 425 MovieClip in Frame 56
onClipEvent (enterFrame) { this._x = this._x + 10; if (this._x > 700) { this._x = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 56
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 401 MovieClip in Frame 56
onClipEvent (load) { bounce = 2; go = 1.5; stopper = 5; up = false; down = true; } onClipEvent (enterFrame) { this._x = this._x + go; if (up) { this._y = this._y - bounce; bounce = bounce - 0.03; } else if (down) { bounce = 2; this._y = this._y + bounce; } if (bounce <= 0) { up = false; down = true; } if (_root.ground.hitTest(this._x, this._y, true) and down) { down = false; bounce = 2; up = true; } if (_root.right.hitTest(this._x, this._y, true)) { go = -1.5; } if (_root.left.hitTest(this._x, this._y, true)) { go = 1.5; } if (_root.die.hitTest(this)) { this._y = -10; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Frame 57
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 58
stop(); _root.gotoAndStop("intro");
Frame 59
stop(); level = "Stage 04"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 174 MovieClip "view" in Frame 59
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 198 MovieClip "goal" in Frame 59
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 3) { this.gotoAndStop(2); } }
Instance of Symbol 431 MovieClip "ground" in Frame 59
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 200 MovieClip "mover" in Frame 59
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 59
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 59
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 288 MovieClip in Frame 59
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 294 MovieClip in Frame 59
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 295 MovieClip in Frame 59
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 60
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 61
stop(); _root.gotoAndStop("intro");
Frame 62
stop(); level = "Stage 09"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 307 MovieClip "view" in Frame 62
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 315 MovieClip "goal" in Frame 62
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 5) { this.gotoAndStop(2); } }
Instance of Symbol 434 MovieClip "ground" in Frame 62
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 441 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } }
Instance of Symbol 441 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } }
Instance of Symbol 200 MovieClip "mover" in Frame 62
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 62
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 62
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 318 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 334 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 334 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 316 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 335 MovieClip in Frame 62
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 63
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 64
stop(); _root.gotoAndStop("intro");
Frame 65
stop(); level = "Stage 19"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 65
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 359 MovieClip "goal" in Frame 65
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 7) { this.gotoAndStop(2); } }
Instance of Symbol 444 MovieClip "ground" in Frame 65
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 441 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 441 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 441 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 441 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 200 MovieClip "mover" in Frame 65
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 65
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 65
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 65
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 66
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 67
stop(); _root.gotoAndStop("intro");
Frame 68
stop(); level = "Stage 17"; game = "stop"; again = true; advance = false; key = 0;
Instance of Symbol 342 MovieClip "view" in Frame 68
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Instance of Symbol 447 MovieClip "ground" in Frame 68
onClipEvent (enterFrame) { this._visible = true; }
Instance of Symbol 359 MovieClip "goal" in Frame 68
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.key == 21) { this.gotoAndStop(2); } }
Instance of Symbol 441 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 441 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.mover.hitTest(this)) { _root.mover.rise = 20; _root.mover.jump = true; _root.hit = false; this.gotoAndStop(2); } } }
Instance of Symbol 200 MovieClip "mover" in Frame 68
onClipEvent (load) { jump = false; rise = 8; gravity = true; fall = 5; speed = 4; } onClipEvent (enterFrame) { this._visible = false; if (_root.die.hitTest(this)) { _root.game = "stop"; this._x = _root.enter._x; this._y = _root.enter._y + 25; } if (_root.game == "begin") { if (_root.lift.hitTest(this._x, this._y, true)) { _root.hit = false; gravity = false; hold = true; } if (_root.left.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x + speed; } if (_root.right.hitTest(this._x, this._y, true)) { _root.hit = false; this._x = this._x - speed; } with (this) { if (_root.ground.hitTest(getBounds(_root).xMax, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(getBounds(_root).xMin, _y, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMax, true)) { _root.hit = false; gravity = false; } else if (_root.ground.hitTest(_x, getBounds(_root).yMin, true)) { _root.hit = false; gravity = false; } else { _root.hit = true; } } if (gravity) { this._y = this._y + fall; } else if ((gravity = false)) { this._y = this._y; } if (_root.world.ground.lift.hitTest(this._x, this._y, true)) { this._x = _root.world.ground.lift.getBounds(_root)._x; } if (Key.isDown(37) and (!Key.isDown(40))) { this._x = this._x - speed; } if (Key.isDown(39) and (!Key.isDown(40))) { this._x = this._x + speed; } if ((Key.isDown(68) and (rep == true)) and (gravity == false)) { jump = true; rep = false; } if ((!Key.isDown(68)) and (_root.hit == false)) { rep = true; } if (jump and (gravity == false)) { this._y = this._y - rise; rise = rise - 0.5; } else if (jump == false) { gravity = true; } if (rise < 0) { rise = 8; jump = false; } } if (_root.game == "over") { jump = false; gravity = true; this._y = this._y - rise; rise = rise - 0.5; } }
Instance of Symbol 210 MovieClip "shosho" in Frame 68
onClipEvent (load) { hopper = false; jumper = true; direction = "right"; } onClipEvent (enterFrame) { this._x = _root.mover._x - 5; this._y = _root.mover._y - 45; if (_root.game == "begin") { with (_root.mover) { if (_root.hit == false) { jumper = false; } else { jumper = true; } } if (Key.isDown(39)) { direction = "right"; this.gotoAndPlay("walkright"); } if (Key.isDown(37)) { direction = "left"; this.gotoAndPlay("walkleft"); } if (Key.isDown(40) and (direction == "left")) { this.gotoAndPlay("duckleft"); } if (Key.isDown(40) and (direction == "right")) { this.gotoAndPlay("duckright"); } if (Key.isDown(68)) { hopper = true; } if ((hopper and (direction == "left")) and (jumper == true)) { this.gotoAndStop("jumpleft"); } if ((hopper and (direction == "right")) and (jumper == true)) { this.gotoAndStop("jumpright"); } } }
Instance of Symbol 216 MovieClip "starter" in Frame 68
onClipEvent (enterFrame) { if ((Key.isDown(83) and (_root.game == "stop")) and _root.again) { _root.again = false; _root.game = "begin"; this.play(1); } if (_root.game == "stop") { this.gotoAndStop(1); } }
Instance of Symbol 413 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 361 MovieClip in Frame 68
onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < -10) { this._x = 700; } if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 380 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 413 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 380 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 409 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 414 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Instance of Symbol 408 MovieClip in Frame 68
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { this.gotoAndStop(2); _root.key = _root.key + 1; } } }
Frame 69
stop(); if (!advance) { gotoAndStop ("gameover"); }
Frame 70
stop(); _root.gotoAndStop("intro");
Frame 71
stop(); level = "Game Over";
Frame 72
stop(); _root.gotoAndStop("intro");
Frame 73
level = "ALL CLEAR!";
Symbol 12 Button
on (release) { getURL ("http://www.lifepoint1.com", "_blank"); }
Symbol 27 Button
on (release) { getURL ("http://www.lifepoint1.com/flash/surface/surface_index.php", "_blank"); }
Symbol 35 Button
on (release) { getURL ("http://www.lifepoint1.com/flash/onegun/one.php", "_blank"); }
Symbol 41 Button
on (release) { getURL ("http://www.lifepoint1.com/", "_blank"); }
Symbol 57 Button
on (release) { getURL ("http://www.lifepoint1.com/", "_blank"); }
Symbol 61 Button
on (release) { getURL ("http://www.lifepoint1.com/main/xin/xin.php", "_blank"); }
Symbol 68 Button
on (release) { getURL ("http://www.lifepoint1.com/kazahana/flash/lifepoint1/main.php", "_blank"); }
Symbol 76 Button
on (release) { getURL ("http://www.lifepoint1.com/games/hearst/detective.php", "_blank"); }
Symbol 147 MovieClip Frame 1
stopAllSounds();
Symbol 147 MovieClip Frame 2
stop();
Symbol 151 Button
on (keyPress "s") { _root.gotoAndStop("intro"); } on (release) { _root.gotoAndStop("intro"); }
Symbol 152 MovieClip Frame 1
stopAllSounds();
Symbol 152 MovieClip Frame 225
stop();
Instance of Symbol 147 MovieClip in Symbol 152 MovieClip Frame 225
onClipEvent (enterFrame) { this._rotation = this._rotation + 1; }
Symbol 167 MovieClip Frame 1
stopAllSounds();
Symbol 167 MovieClip Frame 106
stop(); _root.gotoAndStop("stage1");
Symbol 173 MovieClip Frame 1
stopAllSounds();
Symbol 173 MovieClip Frame 2
stop();
Symbol 174 MovieClip Frame 1
stop();
Symbol 174 MovieClip Frame 2
stop();
Symbol 196 MovieClip Frame 11
stop();
Symbol 198 MovieClip Frame 1
stop();
Instance of Symbol 181 MovieClip "exit" in Symbol 198 MovieClip Frame 2
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { _root.advance = true; _root.game = "stop"; } if (_root.mover.hitTest(this)) { _root.game = "stop"; _root.advance = true; } if (_root.advance) { _root.nextFrame(); } } }
Symbol 198 MovieClip Frame 15
stop();
Symbol 210 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 2
play();
Symbol 210 MovieClip Frame 4
stop();
Symbol 210 MovieClip Frame 5
play();
Symbol 210 MovieClip Frame 7
stop();
Symbol 210 MovieClip Frame 8
play();
Symbol 210 MovieClip Frame 10
stop();
Symbol 210 MovieClip Frame 11
play();
Symbol 210 MovieClip Frame 13
stop();
Symbol 210 MovieClip Frame 14
play();
Symbol 210 MovieClip Frame 16
stop();
Symbol 210 MovieClip Frame 17
play();
Symbol 210 MovieClip Frame 19
stop();
Instance of Symbol 214 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) { if (!_root.again) { this._visible = false; } else { this._visible = true; } }
Symbol 216 MovieClip Frame 11
stop();
Symbol 218 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 12
stop();
Symbol 236 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 16
stop();
Symbol 239 MovieClip Frame 1
stop();
Symbol 242 MovieClip Frame 70
stop();
Symbol 243 MovieClip Frame 1
stop();
Symbol 246 MovieClip Frame 1
stop();
Symbol 246 MovieClip Frame 2
stopAllSounds();
Instance of Symbol 245 MovieClip in Symbol 246 MovieClip Frame 2
onClipEvent (enterFrame) { _root.shosho.gotoAndStop("dead"); }
Symbol 246 MovieClip Frame 83
stop(); _root.again = true; gotoAndStop (1); _root.view.gotoAndPlay(1); if (_root.lives == "Game Over") { _root.gotoAndStop("gameover"); }
Symbol 252 Button
on (release) { _root.advance = true; nextFrame(); }
Symbol 282 MovieClip Frame 183
stop();
Symbol 284 MovieClip Frame 1
stopAllSounds();
Symbol 284 MovieClip Frame 240
stop(); _root.gotoAndStop("stage2");
Symbol 287 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 1
stop();
Symbol 291 MovieClip Frame 1
stopAllSounds();
Symbol 291 MovieClip Frame 240
stop(); _root.gotoAndStop("stage4");
Symbol 294 MovieClip Frame 1
stop();
Symbol 295 MovieClip Frame 1
stop();
Symbol 301 MovieClip Frame 1
stopAllSounds();
Symbol 301 MovieClip Frame 240
stop(); _root.gotoAndStop("stage7");
Symbol 306 MovieClip Frame 1
stopAllSounds();
Symbol 306 MovieClip Frame 2
stop();
Symbol 307 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 2
stop();
Symbol 313 MovieClip Frame 15
stop();
Symbol 314 MovieClip Frame 18
stop();
Symbol 315 MovieClip Frame 1
stop();
Instance of Symbol 181 MovieClip "exit" in Symbol 315 MovieClip Frame 2
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { _root.advance = true; _root.game = "stop"; } if (_root.mover.hitTest(this)) { _root.game = "stop"; _root.advance = true; } if (_root.advance) { _root.nextFrame(); } } }
Symbol 315 MovieClip Frame 15
stop();
Symbol 316 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 1
stop();
Symbol 318 MovieClip Frame 1
stop();
Instance of Symbol 320 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 20; }
Instance of Symbol 323 MovieClip in Symbol 324 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 20; }
Symbol 325 MovieClip Frame 1
stopAllSounds();
Symbol 325 MovieClip Frame 240
stop(); _root.gotoAndStop("stage9");
Symbol 329 MovieClip Frame 1
stopAllSounds();
Symbol 329 MovieClip Frame 240
stop(); _root.gotoAndStop("stage3");
Symbol 331 MovieClip Frame 1
stopAllSounds();
Symbol 331 MovieClip Frame 240
stop(); _root.gotoAndStop("stage12");
Symbol 334 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 1
stop();
Symbol 336 MovieClip Frame 1
stopAllSounds();
Symbol 336 MovieClip Frame 240
stop(); _root.gotoAndStop("stage15");
Symbol 341 MovieClip Frame 1
stopAllSounds();
Symbol 341 MovieClip Frame 2
stop();
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 2
stop();
Symbol 358 MovieClip Frame 14
stop();
Symbol 359 MovieClip Frame 1
stop();
Instance of Symbol 181 MovieClip "exit" in Symbol 359 MovieClip Frame 2
onClipEvent (enterFrame) { if (_root.game == "begin") { if (_root.shosho.hitTest(this)) { _root.advance = true; _root.game = "stop"; } if (_root.mover.hitTest(this)) { _root.game = "stop"; _root.advance = true; } if (_root.advance) { _root.nextFrame(); } } }
Symbol 359 MovieClip Frame 15
stop();
Symbol 362 MovieClip Frame 1
stopAllSounds();
Symbol 362 MovieClip Frame 240
stop(); _root.gotoAndStop("stage17");
Instance of Symbol 366 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 18; }
Instance of Symbol 366 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 18; }
Symbol 369 MovieClip Frame 1
stopAllSounds();
Symbol 369 MovieClip Frame 240
stop(); _root.gotoAndStop("stage21");
Symbol 372 MovieClip Frame 1
stopAllSounds();
Symbol 372 MovieClip Frame 240
stop(); _root.gotoAndStop("stage13");
Symbol 377 MovieClip Frame 1
stopAllSounds();
Symbol 377 MovieClip Frame 240
stop(); _root.gotoAndStop("stage11");
Symbol 380 MovieClip Frame 1
stop();
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 384 MovieClip in Symbol 386 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + -1; }
Symbol 387 MovieClip Frame 1
stopAllSounds();
Symbol 387 MovieClip Frame 240
stop(); _root.gotoAndStop("stage16");
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 390 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 3; }
Symbol 393 MovieClip Frame 1
stopAllSounds();
Symbol 393 MovieClip Frame 240
stop(); _root.gotoAndStop("stage14");
Symbol 402 MovieClip Frame 1
stopAllSounds();
Symbol 402 MovieClip Frame 240
stop(); _root.gotoAndStop("stage8");
Symbol 408 MovieClip Frame 1
stop();
Symbol 409 MovieClip Frame 1
stop();
Symbol 410 MovieClip Frame 1
stopAllSounds();
Symbol 410 MovieClip Frame 240
stop(); _root.gotoAndStop("stage19");
Symbol 413 MovieClip Frame 1
stop();
Symbol 414 MovieClip Frame 1
stop();
Symbol 420 MovieClip Frame 183
stop();
Symbol 421 MovieClip Frame 1
stopAllSounds();
Symbol 421 MovieClip Frame 240
stop(); _root.gotoAndStop("winner");
Symbol 426 MovieClip Frame 1
stopAllSounds();
Symbol 426 MovieClip Frame 240
stop(); _root.gotoAndStop("stage6");
Symbol 432 MovieClip Frame 1
stopAllSounds();
Symbol 432 MovieClip Frame 240
stop(); _root.gotoAndStop("stage5");
Symbol 440 MovieClip Frame 9
stop(); _parent.gotoAndStop(1);
Symbol 441 MovieClip Frame 1
stop();
Symbol 442 MovieClip Frame 1
stopAllSounds();
Symbol 442 MovieClip Frame 240
stop(); _root.gotoAndStop("stage10");
Symbol 445 MovieClip Frame 1
stopAllSounds();
Symbol 445 MovieClip Frame 240
stop(); _root.gotoAndStop("stage20");
Instance of Symbol 383 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 383 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.shosho.head.hitTest(this)) { _root.shosho.gotoAndStop("dead"); _root.game = "over"; } }
Instance of Symbol 448 MovieClip in Symbol 449 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 3; }
Symbol 450 MovieClip Frame 1
stopAllSounds();
Symbol 450 MovieClip Frame 240
stop(); _root.gotoAndStop("stage18");
Symbol 453 MovieClip Frame 1
stopAllSounds();
Symbol 453 MovieClip Frame 2
stop();
Symbol 454 MovieClip Frame 1
stop();
Symbol 458 Button
on (keyPress "s") { _root.gotoAndStop("intro"); } on (release) { _root.gotoAndStop("intro"); }
Symbol 459 MovieClip Frame 98
stop();
Symbol 471 MovieClip Frame 7
stop();
Symbol 495 Button
on (keyPress "s") { _root.gotoAndStop("title"); } on (release) { _root.gotoAndStop("title"); }
Symbol 496 MovieClip Frame 1
stopAllSounds();
Symbol 496 MovieClip Frame 2542
stop();

Library Items

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

Instance Names

"BAR"Frame 1Symbol 82 MovieClip
"TEXT"Frame 1Symbol 83 EditableText
"view"Frame 8Symbol 174 MovieClip
"left"Frame 8Symbol 177 MovieClip
"right"Frame 8Symbol 179 MovieClip
"enter"Frame 8Symbol 181 MovieClip
"ground"Frame 8Symbol 183 MovieClip
"goal"Frame 8Symbol 198 MovieClip
"mover"Frame 8Symbol 200 MovieClip
"shosho"Frame 8Symbol 210 MovieClip
"starter"Frame 8Symbol 216 MovieClip
"die"Frame 8Symbol 246 MovieClip
"stand"Frame 8Symbol 115 MovieClip
"view"Frame 11Symbol 174 MovieClip
"left"Frame 11Symbol 177 MovieClip
"right"Frame 11Symbol 179 MovieClip
"enter"Frame 11Symbol 181 MovieClip
"ground"Frame 11Symbol 286 MovieClip
"goal"Frame 11Symbol 198 MovieClip
"mover"Frame 11Symbol 200 MovieClip
"shosho"Frame 11Symbol 210 MovieClip
"starter"Frame 11Symbol 216 MovieClip
"view"Frame 14Symbol 174 MovieClip
"left"Frame 14Symbol 177 MovieClip
"right"Frame 14Symbol 179 MovieClip
"enter"Frame 14Symbol 181 MovieClip
"ground"Frame 14Symbol 293 MovieClip
"goal"Frame 14Symbol 198 MovieClip
"mover"Frame 14Symbol 200 MovieClip
"shosho"Frame 14Symbol 210 MovieClip
"starter"Frame 14Symbol 216 MovieClip
"barrel"Frame 14Symbol 300 MovieClip
"view"Frame 17Symbol 307 MovieClip
"left"Frame 17Symbol 177 MovieClip
"right"Frame 17Symbol 179 MovieClip
"enter"Frame 17Symbol 181 MovieClip
"ground"Frame 17Symbol 310 MovieClip
"goal"Frame 17Symbol 315 MovieClip
"mover"Frame 17Symbol 200 MovieClip
"shosho"Frame 17Symbol 210 MovieClip
"starter"Frame 17Symbol 216 MovieClip
"fire4"Frame 17Symbol 324 MovieClip
"view"Frame 20Symbol 174 MovieClip
"enter"Frame 20Symbol 181 MovieClip
"goal"Frame 20Symbol 198 MovieClip
"ground"Frame 20Symbol 327 MovieClip
"right"Frame 20Symbol 328 MovieClip
"left"Frame 20Symbol 328 MovieClip
"mover"Frame 20Symbol 200 MovieClip
"shosho"Frame 20Symbol 210 MovieClip
"starter"Frame 20Symbol 216 MovieClip
"view"Frame 23Symbol 307 MovieClip
"left"Frame 23Symbol 177 MovieClip
"right"Frame 23Symbol 179 MovieClip
"enter"Frame 23Symbol 181 MovieClip
"goal"Frame 23Symbol 315 MovieClip
"mover"Frame 23Symbol 200 MovieClip
"shosho"Frame 23Symbol 210 MovieClip
"starter"Frame 23Symbol 216 MovieClip
"view"Frame 26Symbol 307 MovieClip
"left"Frame 26Symbol 177 MovieClip
"right"Frame 26Symbol 179 MovieClip
"enter"Frame 26Symbol 181 MovieClip
"ground"Frame 26Symbol 333 MovieClip
"goal"Frame 26Symbol 315 MovieClip
"mover"Frame 26Symbol 200 MovieClip
"shosho"Frame 26Symbol 210 MovieClip
"starter"Frame 26Symbol 216 MovieClip
"view"Frame 29Symbol 342 MovieClip
"left"Frame 29Symbol 177 MovieClip
"right"Frame 29Symbol 179 MovieClip
"enter"Frame 29Symbol 181 MovieClip
"ground"Frame 29Symbol 344 MovieClip
"goal"Frame 29Symbol 359 MovieClip
"mover"Frame 29Symbol 200 MovieClip
"shosho"Frame 29Symbol 210 MovieClip
"starter"Frame 29Symbol 216 MovieClip
"view"Frame 32Symbol 342 MovieClip
"left"Frame 32Symbol 177 MovieClip
"right"Frame 32Symbol 179 MovieClip
"enter"Frame 32Symbol 181 MovieClip
"goal"Frame 32Symbol 359 MovieClip
"ground"Frame 32Symbol 364 MovieClip
"mover"Frame 32Symbol 200 MovieClip
"shosho"Frame 32Symbol 210 MovieClip
"starter"Frame 32Symbol 216 MovieClip
"view"Frame 35Symbol 307 MovieClip
"left"Frame 35Symbol 177 MovieClip
"right"Frame 35Symbol 179 MovieClip
"enter"Frame 35Symbol 181 MovieClip
"goal"Frame 35Symbol 315 MovieClip
"ground"Frame 35Symbol 371 MovieClip
"mover"Frame 35Symbol 200 MovieClip
"shosho"Frame 35Symbol 210 MovieClip
"starter"Frame 35Symbol 216 MovieClip
"view"Frame 38Symbol 307 MovieClip
"enter"Frame 38Symbol 181 MovieClip
"goal"Frame 38Symbol 315 MovieClip
"ground"Frame 38Symbol 374 MovieClip
"right"Frame 38Symbol 328 MovieClip
"left"Frame 38Symbol 328 MovieClip
"mover"Frame 38Symbol 200 MovieClip
"shosho"Frame 38Symbol 210 MovieClip
"starter"Frame 38Symbol 216 MovieClip
"view"Frame 41Symbol 342 MovieClip
"left"Frame 41Symbol 177 MovieClip
"right"Frame 41Symbol 179 MovieClip
"enter"Frame 41Symbol 181 MovieClip
"goal"Frame 41Symbol 359 MovieClip
"ground"Frame 41Symbol 379 MovieClip
"mover"Frame 41Symbol 200 MovieClip
"shosho"Frame 41Symbol 210 MovieClip
"starter"Frame 41Symbol 216 MovieClip
"view"Frame 44Symbol 307 MovieClip
"left"Frame 44Symbol 177 MovieClip
"right"Frame 44Symbol 179 MovieClip
"enter"Frame 44Symbol 181 MovieClip
"goal"Frame 44Symbol 315 MovieClip
"ground"Frame 44Symbol 389 MovieClip
"mover"Frame 44Symbol 200 MovieClip
"shosho"Frame 44Symbol 210 MovieClip
"starter"Frame 44Symbol 216 MovieClip
"view"Frame 47Symbol 174 MovieClip
"left"Frame 47Symbol 396 MovieClip
"right"Frame 47Symbol 398 MovieClip
"enter"Frame 47Symbol 181 MovieClip
"ground"Frame 47Symbol 399 MovieClip
"goal"Frame 47Symbol 198 MovieClip
"mover"Frame 47Symbol 200 MovieClip
"shosho"Frame 47Symbol 210 MovieClip
"starter"Frame 47Symbol 216 MovieClip
"view"Frame 50Symbol 342 MovieClip
"top02"Frame 50Symbol 406 MovieClip
"top01"Frame 50Symbol 406 MovieClip
"enter"Frame 50Symbol 181 MovieClip
"right"Frame 50Symbol 406 MovieClip
"left"Frame 50Symbol 406 MovieClip
"ground"Frame 50Symbol 407 MovieClip
"goal"Frame 50Symbol 359 MovieClip
"mover"Frame 50Symbol 200 MovieClip
"shosho"Frame 50Symbol 210 MovieClip
"starter"Frame 50Symbol 216 MovieClip
"view"Frame 53Symbol 342 MovieClip
"left"Frame 53Symbol 177 MovieClip
"right"Frame 53Symbol 179 MovieClip
"enter"Frame 53Symbol 181 MovieClip
"ground"Frame 53Symbol 412 MovieClip
"goal"Frame 53Symbol 359 MovieClip
"mover"Frame 53Symbol 200 MovieClip
"shosho"Frame 53Symbol 210 MovieClip
"starter"Frame 53Symbol 216 MovieClip
"view"Frame 56Symbol 174 MovieClip
"left"Frame 56Symbol 177 MovieClip
"right"Frame 56Symbol 179 MovieClip
"enter"Frame 56Symbol 181 MovieClip
"ground"Frame 56Symbol 423 MovieClip
"goal"Frame 56Symbol 198 MovieClip
"mover"Frame 56Symbol 200 MovieClip
"shosho"Frame 56Symbol 210 MovieClip
"starter"Frame 56Symbol 216 MovieClip
"view"Frame 59Symbol 174 MovieClip
"left"Frame 59Symbol 177 MovieClip
"right"Frame 59Symbol 179 MovieClip
"enter"Frame 59Symbol 181 MovieClip
"goal"Frame 59Symbol 198 MovieClip
"ground"Frame 59Symbol 431 MovieClip
"mover"Frame 59Symbol 200 MovieClip
"shosho"Frame 59Symbol 210 MovieClip
"starter"Frame 59Symbol 216 MovieClip
"view"Frame 62Symbol 307 MovieClip
"left"Frame 62Symbol 177 MovieClip
"right"Frame 62Symbol 179 MovieClip
"enter"Frame 62Symbol 181 MovieClip
"goal"Frame 62Symbol 315 MovieClip
"ground"Frame 62Symbol 434 MovieClip
"mover"Frame 62Symbol 200 MovieClip
"shosho"Frame 62Symbol 210 MovieClip
"starter"Frame 62Symbol 216 MovieClip
"view"Frame 65Symbol 342 MovieClip
"left"Frame 65Symbol 177 MovieClip
"right"Frame 65Symbol 179 MovieClip
"enter"Frame 65Symbol 181 MovieClip
"goal"Frame 65Symbol 359 MovieClip
"ground"Frame 65Symbol 444 MovieClip
"mover"Frame 65Symbol 200 MovieClip
"shosho"Frame 65Symbol 210 MovieClip
"starter"Frame 65Symbol 216 MovieClip
"view"Frame 68Symbol 342 MovieClip
"left"Frame 68Symbol 177 MovieClip
"right"Frame 68Symbol 179 MovieClip
"enter"Frame 68Symbol 181 MovieClip
"ground"Frame 68Symbol 447 MovieClip
"goal"Frame 68Symbol 359 MovieClip
"mover"Frame 68Symbol 200 MovieClip
"shosho"Frame 68Symbol 210 MovieClip
"starter"Frame 68Symbol 216 MovieClip
"right_walk"Symbol 152 MovieClip Frame 158Symbol 113 MovieClip
"stand"Symbol 152 MovieClip Frame 216Symbol 115 MovieClip
"stand"Symbol 167 MovieClip Frame 1Symbol 166 MovieClip
"right_walk"Symbol 167 MovieClip Frame 45Symbol 113 MovieClip
"exit"Symbol 198 MovieClip Frame 2Symbol 181 MovieClip
"stand"Symbol 210 MovieClip Frame 1Symbol 115 MovieClip
"right_walk"Symbol 210 MovieClip Frame 2Symbol 113 MovieClip
"head"Symbol 210 MovieClip Frame 2Symbol 202 MovieClip
"standright"Symbol 210 MovieClip Frame 4Symbol 204 MovieClip
"right_walk"Symbol 210 MovieClip Frame 5Symbol 113 MovieClip
"right_walk"Symbol 210 MovieClip Frame 7Symbol 204 MovieClip
"right_walk"Symbol 210 MovieClip Frame 8Symbol 207 MovieClip
"standright"Symbol 210 MovieClip Frame 10Symbol 204 MovieClip
"right_walk"Symbol 210 MovieClip Frame 11Symbol 207 MovieClip
"right_walk"Symbol 210 MovieClip Frame 13Symbol 204 MovieClip
"right_walk"Symbol 210 MovieClip Frame 14Symbol 209 MovieClip
"standright"Symbol 210 MovieClip Frame 16Symbol 204 MovieClip
"right_walk"Symbol 210 MovieClip Frame 17Symbol 209 MovieClip
"right_walk"Symbol 210 MovieClip Frame 19Symbol 204 MovieClip
"stand"Symbol 282 MovieClip Frame 1Symbol 265 MovieClip
"stand"Symbol 282 MovieClip Frame 111Symbol 273 MovieClip
"stand"Symbol 282 MovieClip Frame 152Symbol 278 MovieClip
"stand"Symbol 282 MovieClip Frame 183Symbol 115 MovieClip
"exit"Symbol 315 MovieClip Frame 2Symbol 181 MovieClip
"exit"Symbol 359 MovieClip Frame 2Symbol 181 MovieClip
"stand"Symbol 420 MovieClip Frame 1Symbol 265 MovieClip
"stand"Symbol 420 MovieClip Frame 111Symbol 273 MovieClip
"stand"Symbol 420 MovieClip Frame 152Symbol 278 MovieClip
"stand"Symbol 420 MovieClip Frame 183Symbol 115 MovieClip
"stand"Symbol 496 MovieClip Frame 1Symbol 115 MovieClip
"stand"Symbol 496 MovieClip Frame 18Symbol 471 MovieClip
"stand"Symbol 496 MovieClip Frame 853Symbol 485 MovieClip

Special Tags

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

Labels

"title"Frame 4
"intro"Frame 6
"stage1"Frame 8
"stage3"Frame 11
"stage6"Frame 14
"stage8"Frame 17
"stage2"Frame 20
"stage11"Frame 23
"stage14"Frame 26
"stage16"Frame 29
"stage20"Frame 32
"stage12"Frame 35
"stage10"Frame 38
"stage15"Frame 41
"stage13"Frame 44
"stage7"Frame 47
"stage18"Frame 50
"stage21"Frame 53
"stage5"Frame 56
"stage4"Frame 59
"stage9"Frame 62
"stage19"Frame 65
"stage17"Frame 68
"gameover"Frame 71
"winner"Frame 73
"dead"Symbol 210 MovieClip Frame 1
"walkright"Symbol 210 MovieClip Frame 2
"walkleft"Symbol 210 MovieClip Frame 5
"jumpright"Symbol 210 MovieClip Frame 8
"jumpleft"Symbol 210 MovieClip Frame 11
"duckright"Symbol 210 MovieClip Frame 14
"duckleft"Symbol 210 MovieClip Frame 17
"sho"Symbol 236 MovieClip Frame 2
"uknow"Symbol 239 MovieClip Frame 3
"pain"Symbol 243 MovieClip Frame 2

Dynamic Text Variables

TEXTSymbol 83 EditableText""
levelSymbol 249 EditableText"Stage 00"
livesSymbol 250 EditableText"Game Over"




http://swfchan.com/5/23845/info.shtml
Created: 11/8 -2019 21:42:23 Last modified: 11/8 -2019 21:42:23 Server time: 02/05 -2024 19:09:35