STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
A Very Merry Christmas! |
This is the info page for Flash #47372 |
LEVEL COMPLETE |
UNDERWATER 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 77 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 124 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 77 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 143 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 143 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 157 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 159 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 167 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 169 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 143 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 143 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 143 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 146 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 150 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 77 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 7 MovieClip Frame 1if (_root.Paused) { stop(); } else { play(); }Symbol 7 MovieClip Frame 100if (_root.Paused) { stop(); } else { play(); }Symbol 7 MovieClip Frame 106stop();Symbol 13 MovieClip [djump] Frame 27this.removeMovieClip();Symbol 16 MovieClip [glint] Frame 30this.removeMovieClip();Symbol 22 Buttonon (release) { _root.Pause = false; _root.gotoAndStop("level" + _root.Level); _root.Complete.removeMovieClip(); }Symbol 25 Buttonon (release) { _root.Paused = false; _root.gotoAndStop("home"); _root.Complete.removeMovieClip(); }Symbol 44 MovieClip Frame 40stop();Symbol 58 Buttonon (press) { tellTarget (_root) { nextFrame(); }; }Symbol 59 Buttonon (press) { gotoAndStop ("end"); _root.play(); }Instance of Symbol 34 MovieClip in Symbol 60 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 60 MovieClip Frame 101play();Symbol 60 MovieClip Frame 165stop();Symbol 66 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 72 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 74 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 184 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 82 Buttonon (release) { _root.Level = 1; _root.Lives = 5; _root.gotoAndStop("level" + _root.Level); }Symbol 85 Buttonon (release) { _root.gotoAndStop("controls"); }Symbol 88 Buttonon (press) { _root.gotoAndStop("level0"); }Symbol 91 Buttonon (release) { _root.gotoAndStop("options"); }Symbol 95 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 98 Buttonon (release) { NewgroundsAPI.loadMySite(); }Symbol 99 MovieClip Frame 1stopAllSounds();Symbol 99 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 99 MovieClip Frame 3stop();Symbol 104 Buttonon (release) { _root.MIN = true; _root.MAX = false; _root.MED = false; }Symbol 107 Buttonon (release) { _root.MED = true; _root.MIN = false; _root.MAX = false; }Symbol 110 Buttonon (release) { _root.MAX = true; _root.MIN = false; _root.MED = false; }Symbol 111 Buttonon (release) { _root.Paused = false; _root.gotoAndStop("home"); }Symbol 118 Buttonon (release) { _root.sound.play(); }Symbol 121 Buttonon (release) { _root.sound.gotoAndStop(1); }Symbol 129 Buttonon (release) { _root._quality = "low"; }Symbol 132 Buttonon (release) { _root._quality = "medium"; }Symbol 135 Buttonon (release) { _root._quality = "high"; }Symbol 157 MovieClip Frame 1onEnterFrame = function () { score = (("Coins: " + _root.score) + "/") + _root.mscore; l = "Level: " + _root.Level; t = "Lives: " + _root.Lives; };Symbol 159 MovieClip Frame 1function camControl() { parentColor.setTransform(camColor.getTransform()); var _local3 = sX / this._width; var _local4 = sY / this._height; _parent._x = cX - (this._x * _local3); _parent._y = cY - (this._y * _local4); _parent._xscale = 100 * _local3; _parent._yscale = 100 * _local4; } 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 166 Buttonon (release) { if (_root.Paused) { _root.Paused = false; } }Instance of Symbol 124 MovieClip in Symbol 167 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 [level] | ||
Symbol 2 Sound [coin] | ||
Symbol 3 Sound [song] | ||
Symbol 4 Graphic | Used by:7 17 | |
Symbol 5 ShapeTweening | Used by:7 | |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:4 5 6 | Used by:8 |
Symbol 8 MovieClip [bubble] | Uses:7 | |
Symbol 9 ShapeTweening | Used by:13 | |
Symbol 10 ShapeTweening | Used by:13 | |
Symbol 11 ShapeTweening | Used by:13 | |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip [djump] | Uses:9 10 11 12 | |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:16 |
Symbol 16 MovieClip [glint] | Uses:15 | |
Symbol 17 MovieClip [bubblestill] | Uses:4 | |
Symbol 18 Font | Used by:19 92 93 96 122 126 127 130 131 133 134 136 137 153 154 155 181 182 183 | |
Symbol 19 Text | Uses:18 | Used by:27 |
Symbol 20 Graphic | Used by:22 | |
Symbol 21 Graphic | Used by:22 | |
Symbol 22 Button | Uses:20 21 | Used by:27 |
Symbol 23 Graphic | Used by:25 111 | |
Symbol 24 Graphic | Used by:25 111 | |
Symbol 25 Button | Uses:23 24 | Used by:27 |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 MovieClip [complete] | Uses:19 22 25 26 | |
Symbol 28 Graphic | Used by:30 | |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip | Uses:28 29 | Used by:60 |
Symbol 31 Graphic | Used by:60 | |
Symbol 32 Graphic | Used by:60 | |
Symbol 33 Graphic | Used by:60 | |
Symbol 34 MovieClip | Used by:60 | |
Symbol 35 Graphic | Used by:60 | |
Symbol 36 Graphic | Used by:44 | |
Symbol 37 Graphic | Used by:44 | |
Symbol 38 Graphic | Used by:44 | |
Symbol 39 Graphic | Used by:44 | |
Symbol 40 Graphic | Used by:44 | |
Symbol 41 Graphic | Used by:44 | |
Symbol 42 Graphic | Used by:44 | |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:36 37 38 39 40 41 42 43 | Used by:60 |
Symbol 45 ShapeTweening | Used by:60 | |
Symbol 46 ShapeTweening | Used by:60 | |
Symbol 47 Graphic | Used by:60 | |
Symbol 48 Graphic | Used by:60 | |
Symbol 49 Graphic | Used by:60 | |
Symbol 50 Graphic | Used by:58 59 | |
Symbol 51 Graphic | Used by:58 59 60 | |
Symbol 52 Graphic | Used by:58 59 | |
Symbol 53 Graphic | Used by:58 59 60 | |
Symbol 54 Graphic | Used by:58 59 60 | |
Symbol 55 Graphic | Used by:57 58 59 | |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip | Uses:55 56 | Used by:58 59 60 |
Symbol 58 Button | Uses:50 51 52 53 54 57 55 | Used by:60 |
Symbol 59 Button | Uses:50 51 52 53 54 57 55 | Used by:60 |
Symbol 60 MovieClip | Uses:30 31 32 33 34 35 44 45 46 47 48 49 58 59 54 51 57 53 | Used by:74 |
Symbol 61 Graphic | Used by:74 | |
Symbol 62 Graphic | Used by:66 | |
Symbol 63 Graphic | Used by:66 | |
Symbol 64 Graphic | Used by:66 | |
Symbol 65 Graphic | Used by:66 | |
Symbol 66 Button | Uses:62 63 64 65 | Used by:74 |
Symbol 67 Graphic | Used by:74 | |
Symbol 68 Graphic | Used by:74 | |
Symbol 69 Graphic | Used by:73 | |
Symbol 70 Graphic | Used by:72 | |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 Button | Uses:70 71 | Used by:73 |
Symbol 73 MovieClip | Uses:69 72 | Used by:74 |
Symbol 74 MovieClip | Uses:60 61 66 67 68 73 | Used by:Timeline |
Symbol 75 MovieClip | Used by:77 | |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip | Uses:75 76 | Used by:152 Timeline |
Symbol 184 MovieClip [__Packages.NewgroundsAPI] | ||
Symbol 78 Graphic | Used by:82 85 88 91 | |
Symbol 79 Graphic | Used by:82 | |
Symbol 80 Graphic | Used by:82 85 88 91 | |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 Button | Uses:78 79 80 81 | Used by:Timeline |
Symbol 83 Graphic | Used by:85 | |
Symbol 84 Graphic | Used by:85 | |
Symbol 85 Button | Uses:78 83 80 84 | Used by:Timeline |
Symbol 86 Graphic | Used by:88 | |
Symbol 87 Graphic | Used by:88 | |
Symbol 88 Button | Uses:78 86 80 87 | Used by:Timeline |
Symbol 89 Graphic | Used by:91 | |
Symbol 90 Graphic | Used by:91 | |
Symbol 91 Button | Uses:78 89 80 90 | Used by:Timeline |
Symbol 92 Text | Uses:18 | Used by:Timeline |
Symbol 93 Text | Uses:18 | Used by:95 |
Symbol 94 Graphic | Used by:95 | |
Symbol 95 Button | Uses:93 94 | Used by:Timeline |
Symbol 96 Text | Uses:18 | Used by:98 |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 Button | Uses:96 97 | Used by:Timeline |
Symbol 99 MovieClip | Used by:Timeline | |
Symbol 100 Graphic | Used by:104 107 110 | |
Symbol 101 Graphic | Used by:104 | |
Symbol 102 Graphic | Used by:104 107 110 | |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 Button | Uses:100 101 102 103 | Used by:167 Timeline |
Symbol 105 Graphic | Used by:107 | |
Symbol 106 Graphic | Used by:107 | |
Symbol 107 Button | Uses:100 105 102 106 | Used by:167 Timeline |
Symbol 108 Graphic | Used by:110 | |
Symbol 109 Graphic | Used by:110 | |
Symbol 110 Button | Uses:100 108 102 109 | Used by:167 Timeline |
Symbol 111 Button | Uses:23 24 | Used by:167 Timeline |
Symbol 112 Graphic | Used by:167 Timeline | |
Symbol 113 Graphic | Used by:114 | |
Symbol 114 MovieClip | Uses:113 | Used by:167 Timeline |
Symbol 115 Graphic | Used by:118 | |
Symbol 116 Graphic | Used by:118 | |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 Button | Uses:115 116 117 | Used by:167 Timeline |
Symbol 119 Graphic | Used by:121 | |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 Button | Uses:119 120 | Used by:167 Timeline |
Symbol 122 Text | Uses:18 | Used by:167 Timeline |
Symbol 123 Graphic | Used by:124 | |
Symbol 124 MovieClip | Uses:123 | Used by:167 Timeline |
Symbol 125 Graphic | Used by:167 Timeline | |
Symbol 126 Text | Uses:18 | Used by:129 |
Symbol 127 Text | Uses:18 | Used by:129 |
Symbol 128 Graphic | Used by:129 132 135 | |
Symbol 129 Button | Uses:126 127 128 | Used by:167 Timeline |
Symbol 130 Text | Uses:18 | Used by:132 |
Symbol 131 Text | Uses:18 | Used by:132 |
Symbol 132 Button | Uses:130 131 128 | Used by:167 Timeline |
Symbol 133 Text | Uses:18 | Used by:135 |
Symbol 134 Text | Uses:18 | Used by:135 |
Symbol 135 Button | Uses:133 134 128 | Used by:167 Timeline |
Symbol 136 Text | Uses:18 | Used by:167 Timeline |
Symbol 137 Text | Uses:18 | Used by:Timeline |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:140 170 171 173 175 176 177 178 179 180 |
Symbol 140 MovieClip | Uses:139 | Used by:Timeline |
Symbol 141 Graphic | Used by:142 | |
Symbol 142 MovieClip | Uses:141 | Used by:143 |
Symbol 143 MovieClip | Uses:142 | Used by:Timeline |
Symbol 144 Graphic | Used by:145 | |
Symbol 145 MovieClip | Uses:144 | Used by:146 |
Symbol 146 MovieClip | Uses:145 | Used by:Timeline |
Symbol 147 ShapeTweening | Used by:150 | |
Symbol 148 ShapeTweening | Used by:150 | |
Symbol 149 Graphic | Used by:150 | |
Symbol 150 MovieClip | Uses:147 148 149 | Used by:Timeline |
Symbol 151 Graphic | Used by:152 | |
Symbol 152 MovieClip | Uses:151 77 | Used by:Timeline |
Symbol 153 EditableText | Uses:18 | Used by:157 |
Symbol 154 EditableText | Uses:18 | Used by:157 |
Symbol 155 EditableText | Uses:18 | Used by:157 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:153 154 155 156 | Used by:Timeline |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 | Used by:Timeline |
Symbol 160 Graphic | Used by:167 | |
Symbol 161 Graphic | Used by:167 | |
Symbol 162 Graphic | Used by:166 | |
Symbol 163 Graphic | Used by:166 | |
Symbol 164 Graphic | Used by:166 | |
Symbol 165 Graphic | Used by:166 | |
Symbol 166 Button | Uses:162 163 164 165 | Used by:167 |
Symbol 167 MovieClip | Uses:160 111 104 107 110 112 114 118 121 122 124 125 129 132 135 136 161 166 | Used by:Timeline |
Symbol 168 Graphic | Used by:169 | |
Symbol 169 MovieClip | Uses:168 | Used by:Timeline |
Symbol 170 MovieClip | Uses:139 | Used by:Timeline |
Symbol 171 MovieClip | Uses:139 | Used by:Timeline |
Symbol 172 Graphic | Used by:173 | |
Symbol 173 MovieClip | Uses:172 139 | Used by:Timeline |
Symbol 174 Graphic | Used by:175 | |
Symbol 175 MovieClip | Uses:139 174 | Used by:Timeline |
Symbol 176 MovieClip | Uses:139 | Used by:Timeline |
Symbol 177 MovieClip | Uses:139 | Used by:Timeline |
Symbol 178 MovieClip | Uses:139 | Used by:Timeline |
Symbol 179 MovieClip | Uses:139 | Used by:Timeline |
Symbol 180 MovieClip | Uses:139 | Used by:Timeline |
Symbol 181 Text | Uses:18 | Used by:Timeline |
Symbol 182 Text | Uses:18 | Used by:Timeline |
Symbol 183 Text | Uses:18 | Used by:Timeline |
Instance Names
"sound" | Frame 2 | Symbol 99 MovieClip |
"bar" | Frame 3 | Symbol 114 MovieClip |
"level" | Frame 5 | Symbol 140 MovieClip |
"man" | Frame 5 | Symbol 152 MovieClip |
"hurt" | Frame 5 | Symbol 169 MovieClip |
"level" | Frame 6 | Symbol 170 MovieClip |
"level" | Frame 7 | Symbol 171 MovieClip |
"level" | Frame 8 | Symbol 173 MovieClip |
"level" | Frame 9 | Symbol 175 MovieClip |
"level" | Frame 10 | Symbol 176 MovieClip |
"level" | Frame 11 | Symbol 177 MovieClip |
"level" | Frame 12 | Symbol 178 MovieClip |
"level" | Frame 13 | Symbol 179 MovieClip |
"level" | Frame 14 | Symbol 180 MovieClip |
"level" | Frame 15 | Symbol 140 MovieClip |
"level" | Frame 16 | Symbol 170 MovieClip |
"level" | Frame 17 | Symbol 171 MovieClip |
"level" | Frame 18 | Symbol 173 MovieClip |
"level" | Frame 19 | Symbol 175 MovieClip |
"level" | Frame 20 | Symbol 176 MovieClip |
"level" | Frame 21 | Symbol 177 MovieClip |
"level" | Frame 22 | Symbol 178 MovieClip |
"level" | Frame 23 | Symbol 179 MovieClip |
"level" | Frame 24 | Symbol 180 MovieClip |
"ng_ad" | Symbol 74 MovieClip Frame 1 | Symbol 73 MovieClip |
"bubbles" | Symbol 77 MovieClip Frame 1 | Symbol 75 MovieClip |
"ground" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 140 MovieClip Frame 1 | Symbol 139 MovieClip |
"bar" | Symbol 167 MovieClip Frame 1 | Symbol 114 MovieClip |
"ground" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 170 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 171 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 173 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 175 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 176 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 177 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 178 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 179 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground1" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground2" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground3" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground5" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground6" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground7" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground9" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground8" | Symbol 180 MovieClip Frame 1 | Symbol 139 MovieClip |
"ground4" | Symbol 180 MovieClip Frame 1 | Symbol 139 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 "level" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "coin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "song" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "bubble" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "djump" |
ExportAssets (56) | Timeline Frame 1 | Symbol 16 as "glint" |
ExportAssets (56) | Timeline Frame 1 | Symbol 17 as "bubblestill" |
ExportAssets (56) | Timeline Frame 1 | Symbol 27 as "complete" |
ExportAssets (56) | Timeline Frame 1 | Symbol 184 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 60 MovieClip Frame 1 |
"loaded" | Symbol 60 MovieClip Frame 101 |
"lastframe" | Symbol 60 MovieClip Frame 165 |
"end" | Symbol 60 MovieClip Frame 166 |
"empty" | Symbol 146 MovieClip Frame 1 |
"full" | Symbol 146 MovieClip Frame 2 |
Dynamic Text Variables
score | Symbol 153 EditableText | "" |
l | Symbol 154 EditableText | "" |
t | Symbol 155 EditableText | "" |
|