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

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

Bubble Adventure.swf

This is the info page for
Flash #76954

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


Text
LEVEL COMPLETE

BUBBLE
ADVENTURE

PLAY MORE GAMES

VISIT MY PAGE!

Volume:

LOW

LOW

MEDIUM

MEDIUM

HIGH

HIGH

quality:

Object: Collect All The Coins First,
Then Go Get That Star!
Left: Left Arrow
Right: Right Arrow
Jump: Up Arrow
Double Jump: Up Arrow
Pause: P Key
Adjust The Volume And Screen Size
From Within The Pause Menu Or From
The Options Menu At The Main Menu
Watch The Bubbles As They Will Float
Through The Fake Platforms And Pop
On Invisible Ones

FROM NOW ON ALL LEVELS
ARE INVISIBLE =D CAN YOU
REMEMBER THEM?

Credits:
Programming: Stu Cooke
Artwork: Stu Cooke
Music: ParagonX9 - Chaos Fantasy

Oh Dear!
You Have Died!
Try Again...

ActionScript [AS1/AS2]

Frame 1
NewgroundsAPI.connectMovie(3659); _root._quality = "medium"; _root.Level = 1; _root.Volume = 50; _root.MIN = false; _root.MED = true; _root.MAX = false; menuChange = new ContextMenu(); menuChange.hideBuiltInItems(); _root.menu = menuChange;
Instance of Symbol 83 MovieClip in Frame 1
onClipEvent (load) { bt = 20; bc = 0; } onClipEvent (enterFrame) { bt--; if (bt < 0) { bt = 20; } if (bt <= 0) { this.bubbles.attachMovie("bubblestill", "bubble" + bc, bc); this.bubbles["bubble" + bc]._y = 212; this.bubbles["bubble" + bc]._x = -275 + (Math.random() * 550); bc++; } i = 0; while (i < 100) { this.bubbles["bubble" + i]._y = this.bubbles["bubble" + i]._y - 2; i++; } if (bc >= 100) { bc = 0; } }
Frame 2
stop();
Instance of Symbol 129 MovieClip in Frame 3
on (press) { startDrag (""); } on (release) { stopDrag(); } onClipEvent (load) { _x = (_root.bar._x + (_root.Volume * 2)); } onClipEvent (enterFrame) { i = 0; while (i < 2) { _y = _root.bar._y; i++; } if (_x < _root.bar._x) { _x = _root.bar._x; stopDrag(); } if (_x > (_root.bar._x + _root.bar._width)) { _x = (_root.bar._x + _root.bar._width); stopDrag(); } _root.Volume = (_x - _root.bar._x) / 2; }
Frame 5
_root.Lives = 5; grav = 0.5; yspeed = 0; rspeed = 0; lspeed = 0; fric = 0.5; spd = 0.75; mspeed = 12; termv = 10; distance = 550; p = 1; b = 100; jump = 15; btime = 20; man = _root.man; bubble = true; g = false; a = false; jumping = false; djump = false; keyup = true; Paused = false; _root.floors = new Array(_root.level.ground, _root.level.ground1, _root.level.ground2, _root.level.ground3, _root.level.ground4, _root.level.ground5, _root.level.ground6, _root.level.ground7, _root.level.ground8, _root.level.ground9); onEnterFrame = function () { if (_root.Lives <= 0) { _root.gotoAndStop("dead"); } if (Key.isDown(80)) { Paused = true; } if (!Paused) { _root.man._y = _root.man._y + yspeed; _root.man._x = _root.man._x + rspeed; _root.man._x = _root.man._x - lspeed; if (bubble) { if (Key.isDown(39) || (Key.isDown(37))) { btime = btime - 5; } else { btime--; } if (btime < 0) { _root.attachMovie("bubble", "bubble" + b, b); _root["bubble" + b]._x = (_root.man._x - 15) + (Math.random() * 30); _root["bubble" + b]._y = _root.man._y - 50; b++; btime = 20; } } n = 100; while (n < 251) { _root["bubble" + n]._y = _root["bubble" + n]._y - 2; _root["bubble" + n]._x = _root["bubble" + n]._x + (-1 + (Math.random() * 2)); n++; } if (b > 150) { b = 100; } i = 0; while (i < 10) { bh = 100; while (bh < 151) { if (_root["bubble" + bh].hitTest(_root.floors[i])) { _root["bubble" + bh].removeMovieClip(); } bh++; } if (_root.floors[i].hitTest(_root.man._x, _root.man._y, true)) { g = true; a = false; f = _root.floors[i]._y + _root.level._y; } if (_root.floors[i].hitTest(_root.man._x, _root.man._y - _root.man._height, true)) { yspeed = 2; } if (_root.floors[i].hitTest((_root.man._x + (_root.man._width / 2)) + 3, _root.man._y - 45, true)) { rspeed = -(mspeed + 15); } if (_root.floors[i].hitTest((_root.man._x - (_root.man._width / 2)) + 3, _root.man._y - 45, true)) { lspeed = -(mspeed + 15); } i++; } if ((((((((((!_root.man.hitTest(_root.floors[0])) && (!_root.man.hitTest(_root.floors[1]))) && (!_root.man.hitTest(_root.floors[2]))) && (!_root.man.hitTest(_root.floors[3]))) && (!_root.man.hitTest(_root.floors[4]))) && (!_root.man.hitTest(_root.floors[5]))) && (!_root.man.hitTest(_root.floors[6]))) && (!_root.man.hitTest(_root.floors[7]))) && (!_root.man.hitTest(_root.floors[8]))) && (!_root.man.hitTest(_root.floors[9]))) { g = false; a = true; } if (!Key.isDown(38)) { keyup = true; } if (g) { yspeed = 0; jumping = false; djump = false; _root.man._y = f; if (!jumping) { if (keyup) { if (Key.isDown(38)) { keyup = false; jumping = true; g = false; yspeed = -jump; } } } if (!Key.isDown(39)) { rspeed = rspeed - fric; } if (!Key.isDown(37)) { lspeed = lspeed - fric; } } if (a) { yspeed = yspeed + grav; if (!djump) { if (keyup) { if (Key.isDown(38)) { keyup = false; djump = true; yspeed = -jump; _root.attachMovie("djump", "djump" + p, p); _root["djump" + p]._x = _root.man._x; _root["djump" + p]._y = _root.man._y; p++; } } } } if (_root.man._y > 800) { _root.man._y = 53; _root.man._x = 275; rspeed = 0; lspeed = 0; yspeed = 0; } if (p > 10) { p = 1; } if (rspeed > mspeed) { rspeed = mspeed; } if (lspeed > mspeed) { lspeed = mspeed; } if (Key.isDown(39)) { lspeed = lspeed - spd; rspeed = rspeed + spd; } if (Key.isDown(37)) { rspeed = rspeed - spd; lspeed = lspeed + spd; } if (lspeed < 0) { lspeed = 0; } if (rspeed < 0) { rspeed = 0; } if (yspeed > termv) { yspeed = termv; } } _root.Complete._visible = true; _root.Complete._x = _root.Complete._x + ((_root.man._x - _root.Complete._x) / 10); _root.Complete._y = _root.Complete._y + (((_root.man._y - 75) - _root.Complete._y) / 20); _root.Complete._width = distance; _root.Complete._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }; _root.man._y = 53; _root.man._x = 275; _root.mscore = 41; _root.score = 0;
Instance of Symbol 83 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 148 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 151 MovieClip in Frame 5
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 162 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 164 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 172 MovieClip in Frame 5
onClipEvent (load) { distance = 550; _visible = false; } onClipEvent (enterFrame) { if (_root.Paused) { this._visible = true; } else { this._visible = false; } _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 174 MovieClip "hurt" in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { if (_alpha > 0) { _alpha = (_alpha - 7); } if (_alpha <= 0) { _alpha = 0; } _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Frame 6
_root.man._y = 53; _root.man._x = 275; _root.mscore = 100; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 6
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 7
_root.man._y = 53; _root.man._x = 275; _root.mscore = 65; _root.score = 0;
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 7
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 8
_root.man._y = 53; _root.man._x = 275; _root.mscore = 71; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 8
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 9
_root.man._y = 53; _root.man._x = 275; _root.mscore = 59; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 9
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Frame 10
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 151 MovieClip in Frame 10
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 11
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 11
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 12
_root.man._y = 53; _root.man._x = 275; _root.mscore = 37; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 12
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 13
_root.man._y = 53; _root.man._x = 275; _root.mscore = 57; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 13
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 14
_root.man._y = 53; _root.man._x = 275; _root.mscore = 26; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 14
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 15
_root.man._y = 53; _root.man._x = 275; _root.mscore = 41; _root.score = 0;
Instance of Symbol 148 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 151 MovieClip in Frame 15
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 16
_root.man._y = 53; _root.man._x = 275; _root.mscore = 100; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 16
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 17
_root.man._y = 53; _root.man._x = 275; _root.mscore = 65; _root.score = 0;
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 17
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 18
_root.man._y = 53; _root.man._x = 275; _root.mscore = 71; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 18
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 19
_root.man._y = 53; _root.man._x = 275; _root.mscore = 59; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 19
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 20
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 151 MovieClip in Frame 20
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 21
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 21
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 22
_root.man._y = 53; _root.man._x = 275; _root.mscore = 37; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 22
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 23
_root.man._y = 53; _root.man._x = 275; _root.mscore = 57; _root.score = 0;
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 151 MovieClip in Frame 23
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 24
_root.man._y = 53; _root.man._x = 275; _root.mscore = 26; _root.score = 0;
Instance of Symbol 151 MovieClip in Frame 24
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level = 0; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 155 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 83 MovieClip in Frame 25
onClipEvent (load) { bt = 20; bc = 0; } onClipEvent (enterFrame) { bt--; if (bt < 0) { bt = 20; } if (bt <= 0) { this.bubbles.attachMovie("bubblestill", "bubble" + bc, bc); this.bubbles["bubble" + bc]._y = 212; this.bubbles["bubble" + bc]._x = -275 + (Math.random() * 550); bc++; } i = 0; while (i < 100) { this.bubbles["bubble" + i]._y = this.bubbles["bubble" + i]._y - 2; i++; } if (bc >= 100) { bc = 0; } }
Frame 26
_root.Lives = 5;
Symbol 8 Button
on (release) { _root.Pause = false; _root.gotoAndStop("level" + _root.Level); _root.Complete.removeMovieClip(); }
Symbol 11 Button
on (release) { _root.Paused = false; _root.gotoAndStop("home"); _root.Complete.removeMovieClip(); }
Symbol 18 MovieClip [glint] Frame 30
this.removeMovieClip();
Symbol 26 MovieClip [djump] Frame 27
this.removeMovieClip();
Symbol 30 MovieClip Frame 1
if (_root.Paused) { stop(); } else { play(); }
Symbol 30 MovieClip Frame 100
if (_root.Paused) { stop(); } else { play(); }
Symbol 30 MovieClip Frame 106
stop();
Symbol 48 MovieClip Frame 40
stop();
Symbol 64 Button
on (press) { tellTarget (_root) { nextFrame(); }; }
Symbol 65 Button
on (press) { gotoAndStop ("end"); _root.play(); }
Instance of Symbol 38 MovieClip in Symbol 66 MovieClip Frame 1
onClipEvent (load) { _root.stop(); PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndStop("lastframe"); } } onClipEvent (enterFrame) { PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndPlay("loaded"); } }
Symbol 66 MovieClip Frame 101
play();
Symbol 66 MovieClip Frame 165
stop();
Symbol 72 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 78 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 80 MovieClip Frame 1
function startAd(ngad_url) { trace("opening " + ngad_url); System.security.allowDomain("70.87.128.99"); System.security.allowInsecureDomain("70.87.128.99"); System.security.allowDomain("ads.shizmoo.com"); System.security.allowInsecureDomain("ads.shizmoo.com"); System.security.allowDomain("www.cpmstar.com"); System.security.allowInsecureDomain("www.cpmstar.com"); System.security.allowDomain("server.cpmstar.com"); System.security.allowInsecureDomain("server.cpmstar.com"); var ngads_redirect = new XML(); ngads_redirect.ignoreWhite = true; ngads_redirect.onLoad = function (success) { trace("[NEWGROUNDS FLASH ADS] :: You may get a 'Security Sandbox Violation' ... this is normal, do not freak out!"); if (success) { ng_ad.loadMovie(ngads_redirect.toString(), "GET"); } }; ngads_redirect.load(ngad_url); } if (NewgroundsAPI.getAdURL()) { startAd(NewgroundsAPI.getAdURL()); } NewgroundsAPI.onAdsApproved = function (ad_url) { startAd(ad_url); }; stop();
Symbol 189 MovieClip [__Packages.NewgroundsAPI] Frame 0
class NewgroundsAPI { static var tracker_id, host, version, debug, error_format, header_format, normal_format, link_format; function NewgroundsAPI () { } static function connectMovie(id) { if (!id) { SendError("Missing required 'id' parameter in NewgroundsAPI.connectMovie(id:Number)"); } else if (!tracker_id) { SendMessage("Connecting to API gateway..."); tracker_id = id; host = _url.split("/")[2].toLowerCase(); if (host.length < 1) { host = "localhost"; } var _local2 = new Object(); SendEvent(MOVIE_VIEWS); } } static function setMovieVersion(movie_version) { if (!movie_version) { SendError("Missing required 'version' in NewgroundsAPI.setMovieVersion(version:String)"); } else { version = movie_version; } } static function debugMode() { debug = true; } static function addCustomEvent(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else if (!stat_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else { custom_events[stat_name] = CUSTOM_STATS + stat_id; SendMessage("Created custom event: " + stat_name); } } static function addCustomLink(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else if (!stat_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else { custom_links[stat_name] = CUSTOM_STATS + stat_id; SendMessage((("Created custom link " + stat_id) + ": ") + stat_name); } } static function loadMySite() { SendLink(AUTHOR_SITE); } static function loadNewgrounds(special) { if (special) { var _local1 = {page:special}; } SendLink(NEWGROUNDS, _local1); } static function logCustomEvent(event_name) { if (!event_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.logCustomEvent(event_name:String)"); } else if (!custom_events[event_name]) { SendError("Attempted to log undefined custom event: " + event_name); } else { SendEvent(custom_events[event_name]); } } static function loadCustomLink(link_name) { if (!link_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.loadCustomLink(link_name:String)"); } else if (!custom_links[link_name]) { SendError("Attempted to open undefined custom link: " + link_name); } else { SendLink(custom_links[link_name]); } } static function getAdURL() { return(movie_options.ad_url); } static function getMovieURL() { if (movie_options.movie_url) { return(movie_options.movie_url); } return("Newgrounds.com"); } static function getNewVersionURL() { return((((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + NEW_VERSION); } static function SendEvent(id) { SendStat(id, false); } static function SendLink(id, extra) { SendStat(id, true, extra); } static function ReadGatewayData(params) { for (var _local2 in params) { params[_local2] = unescape(params[_local2]); movie_options[_local2] = params[_local2]; } if (params.settings_loaded) { SendMessage("You have successfully connected to the Newgrounds API gateway!"); SendMessage(("Movie Identified as '" + movie_options.movie_name) + "'"); if (movie_options.message) { SendMessage(movie_options.message); } if (movie_options.ad_url) { SendMessage("Your movie has been approved to run Flash Ads"); onAdsApproved(movie_options.ad_url); } if (movie_options.movie_version and (movie_options.movie_version.toString() != version.toString())) { SendMessage("WARNING: The movie version configured in your API settings does not match this movie's version!"); onNewVersionAvailable(movie_options.movie_version, getMovieURL(), getNewVersionURL()); } if (movie_options.deny_host) { SendMessage("You have blocked 'localHost' in your API settings."); SendMessage("If you wish to test your movie you will need to remove this block."); onDenyHost(host, getMovieURL(), getNewVersionURL()); } if (movie_options.request_portal_url == 1) { var _local4 = (((GATEWAY_URL + "?&id=") + tracker_id) + "&portal_url=") + escape(_url); var _local3 = new XML(); _local3.ignoreWhite = true; _local3.load(_local4); } } else if (!movie_options.settings_loaded) { SendError("Could not establish connection to the API gateway."); } } static function SendStat(stat_id, open_in_browser, extra) { if (!tracker_id) { SendError("API calls cannot be made without a valid movie id."); SendError("Did you remember to add the \"NewgroundsAPI.connectMovie()\" code?"); } else { var _local7 = (((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + stat_id; for (var _local9 in extra) { _local7 = _local7 + ((("&" + escape(_local9)) + "=") + escape(extra[_local9])); } trace(_local7); if (debug) { _local7 = _local7 + "&debug=1"; } if (open_in_browser) { getURL (_local7, "_blank"); } else { var _local10 = new XML(); _local10.ignoreWhite = true; _local10.onLoad = function (success) { var _local6 = new Object(); var _local3 = 0; while (_local3 < this.firstChild.childNodes.length) { var _local4 = this.firstChild.childNodes[_local3]; var _local5 = _local4.nodeName; var _local2 = _local4.attributes.value; if (_local2 == Number(_local2)) { _local2 = Number(_local2); } _local6[_local5] = _local2; _local3++; } NewgroundsAPI.ReadGatewayData(_local6); }; _local10.load(_local7); } } } static function SendError(msg) { trace("[NEWGROUNDS API ERROR] :: " + msg); } static function SendMessage(msg) { trace("[NEWGROUNDS API] :: " + msg); } static function InitTextFormats() { if (!error_format) { error_format = new TextFormat(); error_format.font = "Arial Black"; error_format.size = 48; error_format.color = 16711680 /* 0xFF0000 */; } if (!header_format) { header_format = new TextFormat(); header_format.font = "Arial Black"; header_format.size = 24; header_format.color = 16777215 /* 0xFFFFFF */; } if (!normal_format) { normal_format = new TextFormat(); normal_format.font = "Arial"; normal_format.bold = true; normal_format.size = 12; normal_format.color = 16777215 /* 0xFFFFFF */; } if (!link_format) { link_format = new TextFormat(); link_format.color = 16776960 /* 0xFFFF00 */; link_format.underline = true; } } static function onNewVersionAvailable(version, movie_url, redirect_url) { InitTextFormats(); var _local2 = new Object(); _local2.x = Stage.width / 2; _local2.y = Stage.height / 2; _root.createEmptyMovieClip("NGAPI_new_version_overlay", _root.getNextHighestDepth()); _root.NGAPI_new_version_overlay.lineStyle(1, 0, 100); _root.NGAPI_new_version_overlay.beginFill(0, 70); _root.NGAPI_new_version_overlay.moveTo(-10, -10); _root.NGAPI_new_version_overlay.lineTo(-10, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, -10); _root.NGAPI_new_version_overlay.lineTo(-10, -10); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.lineStyle(10, 0, 100); _root.NGAPI_new_version_overlay.beginFill(51); _root.NGAPI_new_version_overlay.moveTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.createEmptyMovieClip("exit", 1000); _root.NGAPI_new_version_overlay.exit.lineStyle(2, 39423, 100); _root.NGAPI_new_version_overlay.exit.beginFill(0, 50); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.endFill(); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 214, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 226, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 226, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 214, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.onMouseUp = function () { if (_root.NGAPI_new_version_overlay.exit.hitTest(_root._xmouse, _root._ymouse)) { _root.NGAPI_new_version_overlay.removeMovieClip(); } }; var _local3 = (("Version " + version) + " is now available at:") + newline; var _local5 = _local3.length; _local3 = _local3 + movie_url; var _local4 = _local3.length; _root.NGAPI_new_version_overlay.createTextField("mouseblocker", 99, -10, -10, 1000, 1000); _root.NGAPI_new_version_overlay.createTextField("newversion", 100, _local2.x - 210, _local2.y - 90, 400, 80); _root.NGAPI_new_version_overlay.newversion.text = "New Version Available!"; _root.NGAPI_new_version_overlay.newversion.setTextFormat(header_format); _root.NGAPI_new_version_overlay.createTextField("message", 101, (Stage.width - 400) / 2, Stage.height / 2, 400, 40); _root.NGAPI_new_version_overlay.message.text = _local3; _root.NGAPI_new_version_overlay.message.multiline = true; _root.NGAPI_new_version_overlay.message.wordWrap = true; _root.NGAPI_new_version_overlay.message.html = true; _root.NGAPI_new_version_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_new_version_overlay.message.setTextFormat(_local5, _local4, link_format); } static function onDenyHost(hostname, movie_url, redirect_url) { InitTextFormats(); _root.createEmptyMovieClip("NGAPI_deny_host_overlay", _root.getNextHighestDepth()); _root.NGAPI_deny_host_overlay.lineStyle(20, 0, 100); _root.NGAPI_deny_host_overlay.beginFill(6684672); _root.NGAPI_deny_host_overlay.moveTo(0, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, 0); _root.NGAPI_deny_host_overlay.endFill(); var _local2 = ("This movie has not been approved for use on " + hostname) + "."; _local2 = _local2 + "\r\rFor an aproved copy, please visit:\r"; var _local4 = _local2.length; _local2 = _local2 + movie_url; var _local3 = _local2.length; _root.NGAPI_deny_host_overlay.createTextField("mousekill", 100, 0, 0, Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.createTextField("error", 101, (Stage.width - 400) / 2, (Stage.height / 2) - 100, 400, 200); _root.NGAPI_deny_host_overlay.error.text = "ERROR!"; _root.NGAPI_deny_host_overlay.error.setTextFormat(error_format); _root.NGAPI_deny_host_overlay.createTextField("message", 102, (Stage.width - 400) / 2, Stage.height / 2, 400, 200); _root.NGAPI_deny_host_overlay.message.text = _local2; _root.NGAPI_deny_host_overlay.message.multiline = true; _root.NGAPI_deny_host_overlay.message.wordWrap = true; _root.NGAPI_deny_host_overlay.message.html = true; _root.NGAPI_deny_host_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_deny_host_overlay.message.setTextFormat(_local4, _local3, link_format); } static function isInstalled() { return(true); } static function onAdsApproved(ad_url) { } static var movie_options = new Object(); static var custom_events = new Object(); static var custom_links = new Object(); static var MOVIE_VIEWS = 1; static var AUTHOR_SITE = 2; static var NEWGROUNDS = 3; static var NEW_VERSION = 4; static var CUSTOM_STATS = 50; static var GATEWAY_URL = "http://www.ngads.com/gateway.php"; }
Symbol 88 Button
on (release) { _root.Level = 1; _root.Lives = 5; _root.gotoAndStop("level" + _root.Level); }
Symbol 91 Button
on (release) { _root.gotoAndStop("controls"); }
Symbol 94 Button
on (press) { _root.gotoAndStop("level0"); }
Symbol 97 Button
on (release) { _root.gotoAndStop("options"); }
Symbol 101 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 104 Button
on (release) { NewgroundsAPI.loadMySite(); }
Symbol 105 MovieClip Frame 1
stopAllSounds();
Symbol 105 MovieClip Frame 2
s = new Sound(); s.attachSound("song"); s.start(0, 999999); onEnterFrame = function () { i = 0; while (i < 3) { s.setVolume(_root.Volume); i++; } };
Symbol 105 MovieClip Frame 3
stop();
Symbol 110 Button
on (release) { _root.MIN = true; _root.MAX = false; _root.MED = false; }
Symbol 113 Button
on (release) { _root.MED = true; _root.MIN = false; _root.MAX = false; }
Symbol 116 Button
on (release) { _root.MAX = true; _root.MIN = false; _root.MED = false; }
Symbol 117 Button
on (release) { _root.Paused = false; _root.gotoAndStop("home"); }
Symbol 123 Button
on (release) { _root.sound.play(); }
Symbol 126 Button
on (release) { _root.sound.gotoAndStop(1); }
Symbol 134 Button
on (release) { _root._quality = "low"; }
Symbol 137 Button
on (release) { _root._quality = "medium"; }
Symbol 140 Button
on (release) { _root._quality = "high"; }
Symbol 162 MovieClip Frame 1
onEnterFrame = function () { score = (("Coins: " + _root.score) + "/") + _root.mscore; l = "Level: " + _root.Level; t = "Lives: " + _root.Lives; };
Symbol 164 MovieClip Frame 1
function camControl() { parentColor.setTransform(camColor.getTransform()); var _local4 = sX / this._width; var _local3 = sY / this._height; _parent._x = cX - (this._x * _local4); _parent._y = cY - (this._y * _local3); _parent._xscale = 100 * _local4; _parent._yscale = 100 * _local3; } function resetStage() { var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0}; parentColor.setTransform(_local2); _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; } this._visible = false; var oldMode = Stage.scaleMode; Stage.scaleMode = "exactFit"; var cX = (Stage.width / 2); var cY = (Stage.height / 2); var sX = Stage.width; var sY = Stage.height; Stage.scaleMode = oldMode; var camColor = new Color(this); var parentColor = new Color(_parent); this.onEnterFrame = camControl; camControl(); this.onUnload = resetStage;
Symbol 171 Button
on (release) { if (_root.Paused) { _root.Paused = false; } }
Instance of Symbol 129 MovieClip in Symbol 172 MovieClip Frame 1
on (press) { startDrag (""); } on (release) { stopDrag(); } onClipEvent (load) { _x = (_parent.bar._x + (_root.Volume * 2)); } onClipEvent (enterFrame) { i = 0; while (i < 2) { _y = _parent.bar._y; i++; } if (_x < _parent.bar._x) { _x = _parent.bar._x; stopDrag(); } if (_x > (_parent.bar._x + _parent.bar._width)) { _x = (_parent.bar._x + _parent.bar._width); stopDrag(); } _root.Volume = (_x - _parent.bar._x) / 2; }

Library Items

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

Instance Names

"sound"Frame 2Symbol 105 MovieClip
"bar"Frame 3Symbol 120 MovieClip
"level"Frame 5Symbol 145 MovieClip
"man"Frame 5Symbol 157 MovieClip
"hurt"Frame 5Symbol 174 MovieClip
"level"Frame 6Symbol 175 MovieClip
"level"Frame 7Symbol 176 MovieClip
"level"Frame 8Symbol 178 MovieClip
"level"Frame 9Symbol 180 MovieClip
"level"Frame 10Symbol 181 MovieClip
"level"Frame 11Symbol 182 MovieClip
"level"Frame 12Symbol 183 MovieClip
"level"Frame 13Symbol 184 MovieClip
"level"Frame 14Symbol 185 MovieClip
"level"Frame 15Symbol 145 MovieClip
"level"Frame 16Symbol 175 MovieClip
"level"Frame 17Symbol 176 MovieClip
"level"Frame 18Symbol 178 MovieClip
"level"Frame 19Symbol 180 MovieClip
"level"Frame 20Symbol 181 MovieClip
"level"Frame 21Symbol 182 MovieClip
"level"Frame 22Symbol 183 MovieClip
"level"Frame 23Symbol 184 MovieClip
"level"Frame 24Symbol 185 MovieClip
"ng_ad"Symbol 80 MovieClip Frame 1Symbol 79 MovieClip
"bubbles"Symbol 83 MovieClip Frame 1Symbol 81 MovieClip
"ground"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"bar"Symbol 172 MovieClip Frame 1Symbol 120 MovieClip
"ground"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 175 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 176 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 178 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 180 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 181 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 182 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 183 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 184 MovieClip Frame 1Symbol 144 MovieClip
"ground"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground1"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground2"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground3"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground5"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground6"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground7"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground9"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground8"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip
"ground4"Symbol 185 MovieClip Frame 1Symbol 144 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "song"
ExportAssets (56)Timeline Frame 1Symbol 2 as "coin"
ExportAssets (56)Timeline Frame 1Symbol 3 as "level"
ExportAssets (56)Timeline Frame 1Symbol 13 as "complete"
ExportAssets (56)Timeline Frame 1Symbol 15 as "bubblestill"
ExportAssets (56)Timeline Frame 1Symbol 18 as "glint"
ExportAssets (56)Timeline Frame 1Symbol 26 as "djump"
ExportAssets (56)Timeline Frame 1Symbol 31 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 189 as "__Packages.NewgroundsAPI"

Labels

"home"Frame 2
"options"Frame 3
"controls"Frame 4
"level1"Frame 5
"level2"Frame 6
"level3"Frame 7
"level4"Frame 8
"level5"Frame 9
"level6"Frame 10
"level7"Frame 11
"level8"Frame 12
"level9"Frame 13
"level10"Frame 14
"level11"Frame 15
"level12"Frame 16
"level13"Frame 17
"level14"Frame 18
"level15"Frame 19
"level16"Frame 20
"level17"Frame 21
"level18"Frame 22
"level19"Frame 23
"level20"Frame 24
"level0"Frame 25
"dead"Frame 26
"loading"Symbol 66 MovieClip Frame 1
"loaded"Symbol 66 MovieClip Frame 101
"lastframe"Symbol 66 MovieClip Frame 165
"end"Symbol 66 MovieClip Frame 166
"empty"Symbol 151 MovieClip Frame 1
"full"Symbol 151 MovieClip Frame 2

Dynamic Text Variables

scoreSymbol 158 EditableText""
lSymbol 159 EditableText""
tSymbol 160 EditableText""




http://swfchan.com/16/76954/info.shtml
Created: 4/4 -2019 09:46:03 Last modified: 4/4 -2019 09:46:03 Server time: 17/05 -2024 09:56:19