STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #76954 |
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 1NewgroundsAPI.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 1onClipEvent (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 2stop();Instance of Symbol 129 MovieClip in Frame 3on (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 5onClipEvent (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 5onClipEvent (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 5onClipEvent (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 5onClipEvent (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 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 5onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 5onClipEvent (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 5onClipEvent (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 5onClipEvent (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 5onClipEvent (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 6onClipEvent (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 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 6onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (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 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 7onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 7onClipEvent (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 8onClipEvent (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 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 8onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 9onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 9onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (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 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 10onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 11onClipEvent (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 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 11onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 12onClipEvent (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 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 12onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 13onClipEvent (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 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 13onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 14onClipEvent (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 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 14onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 15onClipEvent (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 15onClipEvent (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 15onClipEvent (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 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 15onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 16onClipEvent (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 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 16onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (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 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 17onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 17onClipEvent (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 18onClipEvent (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 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 18onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 19onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 19onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (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 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 20onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 21onClipEvent (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 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 21onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 22onClipEvent (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 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 22onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 23onClipEvent (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 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 23onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _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 24onClipEvent (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 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }Instance of Symbol 155 MovieClip in Frame 24onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "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 25onClipEvent (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 Buttonon (release) { _root.Pause = false; _root.gotoAndStop("level" + _root.Level); _root.Complete.removeMovieClip(); }Symbol 11 Buttonon (release) { _root.Paused = false; _root.gotoAndStop("home"); _root.Complete.removeMovieClip(); }Symbol 18 MovieClip [glint] Frame 30this.removeMovieClip();Symbol 26 MovieClip [djump] Frame 27this.removeMovieClip();Symbol 30 MovieClip Frame 1if (_root.Paused) { stop(); } else { play(); }Symbol 30 MovieClip Frame 100if (_root.Paused) { stop(); } else { play(); }Symbol 30 MovieClip Frame 106stop();Symbol 48 MovieClip Frame 40stop();Symbol 64 Buttonon (press) { tellTarget (_root) { nextFrame(); }; }Symbol 65 Buttonon (press) { gotoAndStop ("end"); _root.play(); }Instance of Symbol 38 MovieClip in Symbol 66 MovieClip Frame 1onClipEvent (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 101play();Symbol 66 MovieClip Frame 165stop();Symbol 72 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 78 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 80 MovieClip Frame 1function 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 0class 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 Buttonon (release) { _root.Level = 1; _root.Lives = 5; _root.gotoAndStop("level" + _root.Level); }Symbol 91 Buttonon (release) { _root.gotoAndStop("controls"); }Symbol 94 Buttonon (press) { _root.gotoAndStop("level0"); }Symbol 97 Buttonon (release) { _root.gotoAndStop("options"); }Symbol 101 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 104 Buttonon (release) { NewgroundsAPI.loadMySite(); }Symbol 105 MovieClip Frame 1stopAllSounds();Symbol 105 MovieClip Frame 2s = 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 3stop();Symbol 110 Buttonon (release) { _root.MIN = true; _root.MAX = false; _root.MED = false; }Symbol 113 Buttonon (release) { _root.MED = true; _root.MIN = false; _root.MAX = false; }Symbol 116 Buttonon (release) { _root.MAX = true; _root.MIN = false; _root.MED = false; }Symbol 117 Buttonon (release) { _root.Paused = false; _root.gotoAndStop("home"); }Symbol 123 Buttonon (release) { _root.sound.play(); }Symbol 126 Buttonon (release) { _root.sound.gotoAndStop(1); }Symbol 134 Buttonon (release) { _root._quality = "low"; }Symbol 137 Buttonon (release) { _root._quality = "medium"; }Symbol 140 Buttonon (release) { _root._quality = "high"; }Symbol 162 MovieClip Frame 1onEnterFrame = function () { score = (("Coins: " + _root.score) + "/") + _root.mscore; l = "Level: " + _root.Level; t = "Lives: " + _root.Lives; };Symbol 164 MovieClip Frame 1function 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 Buttonon (release) { if (_root.Paused) { _root.Paused = false; } }Instance of Symbol 129 MovieClip in Symbol 172 MovieClip Frame 1on (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 Font | Used by:5 98 99 102 127 131 132 135 136 138 139 141 142 158 159 160 186 187 188 | |
Symbol 5 Text | Uses:4 | Used by:13 |
Symbol 6 Graphic | Used by:8 | |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 Button | Uses:6 7 | Used by:13 |
Symbol 9 Graphic | Used by:11 117 | |
Symbol 10 Graphic | Used by:11 117 | |
Symbol 11 Button | Uses:9 10 | Used by:13 |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip [complete] | Uses:5 8 11 12 | |
Symbol 14 Graphic | Used by:15 30 | |
Symbol 15 MovieClip [bubblestill] | Uses:14 | |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip | Uses:16 | Used by:18 |
Symbol 18 MovieClip [glint] | Uses:17 | |
Symbol 19 ShapeTweening | Used by:26 | |
Symbol 20 Graphic | Used by:26 | |
Symbol 21 ShapeTweening | Used by:26 | |
Symbol 22 Graphic | Used by:26 | |
Symbol 23 ShapeTweening | Used by:26 | |
Symbol 24 Graphic | Used by:26 | |
Symbol 25 Graphic | Used by:26 | |
Symbol 26 MovieClip [djump] | Uses:19 20 21 22 23 24 25 | |
Symbol 27 ShapeTweening | Used by:30 | |
Symbol 28 Graphic | Used by:30 | |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip | Uses:14 27 28 29 | Used by:31 |
Symbol 31 MovieClip [bubble] | Uses:30 | |
Symbol 32 Graphic | Used by:34 | |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip | Uses:32 33 | Used by:66 |
Symbol 35 Graphic | Used by:66 | |
Symbol 36 Graphic | Used by:66 | |
Symbol 37 Graphic | Used by:66 | |
Symbol 38 MovieClip | Used by:66 | |
Symbol 39 Graphic | Used by:66 | |
Symbol 40 Graphic | Used by:48 | |
Symbol 41 Graphic | Used by:48 | |
Symbol 42 Graphic | Used by:48 | |
Symbol 43 Graphic | Used by:48 | |
Symbol 44 Graphic | Used by:48 | |
Symbol 45 Graphic | Used by:48 | |
Symbol 46 Graphic | Used by:48 | |
Symbol 47 Graphic | Used by:48 | |
Symbol 48 MovieClip | Uses:40 41 42 43 44 45 46 47 | Used by:66 |
Symbol 49 ShapeTweening | Used by:66 | |
Symbol 50 Graphic | Used by:66 | |
Symbol 51 ShapeTweening | Used by:66 | |
Symbol 52 Graphic | Used by:66 | |
Symbol 53 Graphic | Used by:66 | |
Symbol 54 Graphic | Used by:66 | |
Symbol 55 Graphic | Used by:66 | |
Symbol 56 Graphic | Used by:64 65 | |
Symbol 57 Graphic | Used by:64 65 66 | |
Symbol 58 Graphic | Used by:64 65 | |
Symbol 59 Graphic | Used by:64 65 66 | |
Symbol 60 Graphic | Used by:64 65 66 | |
Symbol 61 Graphic | Used by:63 64 65 | |
Symbol 62 Graphic | Used by:63 | |
Symbol 63 MovieClip | Uses:61 62 | Used by:64 65 66 |
Symbol 64 Button | Uses:56 57 58 59 60 63 61 | Used by:66 |
Symbol 65 Button | Uses:56 57 58 59 60 63 61 | Used by:66 |
Symbol 66 MovieClip | Uses:34 35 36 37 38 39 48 49 50 51 52 53 54 55 64 65 60 57 63 59 | Used by:80 |
Symbol 67 Graphic | Used by:80 | |
Symbol 68 Graphic | Used by:72 | |
Symbol 69 Graphic | Used by:72 | |
Symbol 70 Graphic | Used by:72 | |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 Button | Uses:68 69 70 71 | Used by:80 |
Symbol 73 Graphic | Used by:80 | |
Symbol 74 Graphic | Used by:80 | |
Symbol 75 Graphic | Used by:79 | |
Symbol 76 Graphic | Used by:78 | |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 Button | Uses:76 77 | Used by:79 |
Symbol 79 MovieClip | Uses:75 78 | Used by:80 |
Symbol 80 MovieClip | Uses:66 67 72 73 74 79 | Used by:Timeline |
Symbol 81 MovieClip | Used by:83 | |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip | Uses:81 82 | Used by:157 Timeline |
Symbol 189 MovieClip [__Packages.NewgroundsAPI] | ||
Symbol 84 Graphic | Used by:88 91 94 97 | |
Symbol 85 Graphic | Used by:88 | |
Symbol 86 Graphic | Used by:88 91 94 97 | |
Symbol 87 Graphic | Used by:88 | |
Symbol 88 Button | Uses:84 85 86 87 | Used by:Timeline |
Symbol 89 Graphic | Used by:91 | |
Symbol 90 Graphic | Used by:91 | |
Symbol 91 Button | Uses:84 89 86 90 | Used by:Timeline |
Symbol 92 Graphic | Used by:94 | |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 Button | Uses:84 92 86 93 | Used by:Timeline |
Symbol 95 Graphic | Used by:97 | |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 Button | Uses:84 95 86 96 | Used by:Timeline |
Symbol 98 Text | Uses:4 | Used by:Timeline |
Symbol 99 Text | Uses:4 | Used by:101 |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 Button | Uses:99 100 | Used by:Timeline |
Symbol 102 Text | Uses:4 | Used by:104 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 Button | Uses:102 103 | Used by:Timeline |
Symbol 105 MovieClip | Used by:Timeline | |
Symbol 106 Graphic | Used by:110 113 116 | |
Symbol 107 Graphic | Used by:110 | |
Symbol 108 Graphic | Used by:110 113 116 | |
Symbol 109 Graphic | Used by:110 | |
Symbol 110 Button | Uses:106 107 108 109 | Used by:172 Timeline |
Symbol 111 Graphic | Used by:113 | |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 Button | Uses:106 111 108 112 | Used by:172 Timeline |
Symbol 114 Graphic | Used by:116 | |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 Button | Uses:106 114 108 115 | Used by:172 Timeline |
Symbol 117 Button | Uses:9 10 | Used by:172 Timeline |
Symbol 118 Graphic | Used by:172 Timeline | |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:172 Timeline |
Symbol 121 Graphic | Used by:123 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 Button | Uses:121 122 | Used by:172 Timeline |
Symbol 124 Graphic | Used by:126 | |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 Button | Uses:124 125 | Used by:172 Timeline |
Symbol 127 Text | Uses:4 | Used by:172 Timeline |
Symbol 128 Graphic | Used by:129 | |
Symbol 129 MovieClip | Uses:128 | Used by:172 Timeline |
Symbol 130 Graphic | Used by:172 Timeline | |
Symbol 131 Text | Uses:4 | Used by:134 |
Symbol 132 Text | Uses:4 | Used by:134 |
Symbol 133 Graphic | Used by:134 137 140 | |
Symbol 134 Button | Uses:131 132 133 | Used by:172 Timeline |
Symbol 135 Text | Uses:4 | Used by:137 |
Symbol 136 Text | Uses:4 | Used by:137 |
Symbol 137 Button | Uses:135 136 133 | Used by:172 Timeline |
Symbol 138 Text | Uses:4 | Used by:140 |
Symbol 139 Text | Uses:4 | Used by:140 |
Symbol 140 Button | Uses:138 139 133 | Used by:172 Timeline |
Symbol 141 Text | Uses:4 | Used by:172 Timeline |
Symbol 142 Text | Uses:4 | Used by:Timeline |
Symbol 143 Graphic | Used by:144 | |
Symbol 144 MovieClip | Uses:143 | Used by:145 175 176 178 180 181 182 183 184 185 |
Symbol 145 MovieClip | Uses:144 | Used by:Timeline |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:146 | Used by:148 |
Symbol 148 MovieClip | Uses:147 | Used by:Timeline |
Symbol 149 Graphic | Used by:150 | |
Symbol 150 MovieClip | Uses:149 | Used by:151 |
Symbol 151 MovieClip | Uses:150 | Used by:Timeline |
Symbol 152 ShapeTweening | Used by:155 | |
Symbol 153 ShapeTweening | Used by:155 | |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:152 153 154 | Used by:Timeline |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 83 | Used by:Timeline |
Symbol 158 EditableText | Uses:4 | Used by:162 |
Symbol 159 EditableText | Uses:4 | Used by:162 |
Symbol 160 EditableText | Uses:4 | Used by:162 |
Symbol 161 Graphic | Used by:162 | |
Symbol 162 MovieClip | Uses:158 159 160 161 | Used by:Timeline |
Symbol 163 Graphic | Used by:164 | |
Symbol 164 MovieClip | Uses:163 | Used by:Timeline |
Symbol 165 Graphic | Used by:172 | |
Symbol 166 Graphic | Used by:172 | |
Symbol 167 Graphic | Used by:171 | |
Symbol 168 Graphic | Used by:171 | |
Symbol 169 Graphic | Used by:171 | |
Symbol 170 Graphic | Used by:171 | |
Symbol 171 Button | Uses:167 168 169 170 | Used by:172 |
Symbol 172 MovieClip | Uses:165 117 110 113 116 118 120 123 126 127 129 130 134 137 140 141 166 171 | Used by:Timeline |
Symbol 173 Graphic | Used by:174 | |
Symbol 174 MovieClip | Uses:173 | Used by:Timeline |
Symbol 175 MovieClip | Uses:144 | Used by:Timeline |
Symbol 176 MovieClip | Uses:144 | Used by:Timeline |
Symbol 177 Graphic | Used by:178 | |
Symbol 178 MovieClip | Uses:177 144 | Used by:Timeline |
Symbol 179 Graphic | Used by:180 | |
Symbol 180 MovieClip | Uses:144 179 | Used by:Timeline |
Symbol 181 MovieClip | Uses:144 | Used by:Timeline |
Symbol 182 MovieClip | Uses:144 | Used by:Timeline |
Symbol 183 MovieClip | Uses:144 | Used by:Timeline |
Symbol 184 MovieClip | Uses:144 | Used by:Timeline |
Symbol 185 MovieClip | Uses:144 | Used by:Timeline |
Symbol 186 Text | Uses:4 | Used by:Timeline |
Symbol 187 Text | Uses:4 | Used by:Timeline |
Symbol 188 Text | Uses:4 | Used by:Timeline |
Instance Names
"sound" | Frame 2 | Symbol 105 MovieClip |
"bar" | Frame 3 | Symbol 120 MovieClip |
"level" | Frame 5 | Symbol 145 MovieClip |
"man" | Frame 5 | Symbol 157 MovieClip |
"hurt" | Frame 5 | Symbol 174 MovieClip |
"level" | Frame 6 | Symbol 175 MovieClip |
"level" | Frame 7 | Symbol 176 MovieClip |
"level" | Frame 8 | Symbol 178 MovieClip |
"level" | Frame 9 | Symbol 180 MovieClip |
"level" | Frame 10 | Symbol 181 MovieClip |
"level" | Frame 11 | Symbol 182 MovieClip |
"level" | Frame 12 | Symbol 183 MovieClip |
"level" | Frame 13 | Symbol 184 MovieClip |
"level" | Frame 14 | Symbol 185 MovieClip |
"level" | Frame 15 | Symbol 145 MovieClip |
"level" | Frame 16 | Symbol 175 MovieClip |
"level" | Frame 17 | Symbol 176 MovieClip |
"level" | Frame 18 | Symbol 178 MovieClip |
"level" | Frame 19 | Symbol 180 MovieClip |
"level" | Frame 20 | Symbol 181 MovieClip |
"level" | Frame 21 | Symbol 182 MovieClip |
"level" | Frame 22 | Symbol 183 MovieClip |
"level" | Frame 23 | Symbol 184 MovieClip |
"level" | Frame 24 | Symbol 185 MovieClip |
"ng_ad" | Symbol 80 MovieClip Frame 1 | Symbol 79 MovieClip |
"bubbles" | Symbol 83 MovieClip Frame 1 | Symbol 81 MovieClip |
"ground" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 145 MovieClip Frame 1 | Symbol 144 MovieClip |
"bar" | Symbol 172 MovieClip Frame 1 | Symbol 120 MovieClip |
"ground" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 175 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 176 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 178 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 180 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 181 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 182 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 183 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 184 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground1" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground2" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground3" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground5" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground6" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground7" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground9" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground8" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
"ground4" | Symbol 185 MovieClip Frame 1 | Symbol 144 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "song" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "coin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "level" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "complete" |
ExportAssets (56) | Timeline Frame 1 | Symbol 15 as "bubblestill" |
ExportAssets (56) | Timeline Frame 1 | Symbol 18 as "glint" |
ExportAssets (56) | Timeline Frame 1 | Symbol 26 as "djump" |
ExportAssets (56) | Timeline Frame 1 | Symbol 31 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 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
score | Symbol 158 EditableText | "" |
l | Symbol 159 EditableText | "" |
t | Symbol 160 EditableText | "" |
|