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

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

Bubble Adventure.swf

This is the info page for
Flash #47372

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


Text
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 1
NewgroundsAPI.connectMovie(3659); _root._quality = "medium"; _root.Level = 1; _root.Volume = 50; _root.MIN = false; _root.MED = true; _root.MAX = false; menuChange = new ContextMenu(); menuChange.hideBuiltInItems(); _root.menu = menuChange;
Instance of Symbol 77 MovieClip in Frame 1
onClipEvent (load) { bt = 20; bc = 0; } onClipEvent (enterFrame) { bt--; if (bt < 0) { bt = 20; } if (bt <= 0) { this.bubbles.attachMovie("bubblestill", "bubble" + bc, bc); this.bubbles["bubble" + bc]._y = 212; this.bubbles["bubble" + bc]._x = -275 + (Math.random() * 550); bc++; } i = 0; while (i < 100) { this.bubbles["bubble" + i]._y = this.bubbles["bubble" + i]._y - 2; i++; } if (bc >= 100) { bc = 0; } }
Frame 2
stop();
Instance of Symbol 124 MovieClip in Frame 3
on (press) { startDrag (""); } on (release) { stopDrag(); } onClipEvent (load) { _x = (_root.bar._x + (_root.Volume * 2)); } onClipEvent (enterFrame) { i = 0; while (i < 2) { _y = _root.bar._y; i++; } if (_x < _root.bar._x) { _x = _root.bar._x; stopDrag(); } if (_x > (_root.bar._x + _root.bar._width)) { _x = (_root.bar._x + _root.bar._width); stopDrag(); } _root.Volume = (_x - _root.bar._x) / 2; }
Frame 5
_root.Lives = 5; grav = 0.5; yspeed = 0; rspeed = 0; lspeed = 0; fric = 0.5; spd = 0.75; mspeed = 12; termv = 10; distance = 550; p = 1; b = 100; jump = 15; btime = 20; man = _root.man; bubble = true; g = false; a = false; jumping = false; djump = false; keyup = true; Paused = false; _root.floors = new Array(_root.level.ground, _root.level.ground1, _root.level.ground2, _root.level.ground3, _root.level.ground4, _root.level.ground5, _root.level.ground6, _root.level.ground7, _root.level.ground8, _root.level.ground9); onEnterFrame = function () { if (_root.Lives <= 0) { _root.gotoAndStop("dead"); } if (Key.isDown(80)) { Paused = true; } if (!Paused) { _root.man._y = _root.man._y + yspeed; _root.man._x = _root.man._x + rspeed; _root.man._x = _root.man._x - lspeed; if (bubble) { if (Key.isDown(39) || (Key.isDown(37))) { btime = btime - 5; } else { btime--; } if (btime < 0) { _root.attachMovie("bubble", "bubble" + b, b); _root["bubble" + b]._x = (_root.man._x - 15) + (Math.random() * 30); _root["bubble" + b]._y = _root.man._y - 50; b++; btime = 20; } } n = 100; while (n < 251) { _root["bubble" + n]._y = _root["bubble" + n]._y - 2; _root["bubble" + n]._x = _root["bubble" + n]._x + (-1 + (Math.random() * 2)); n++; } if (b > 150) { b = 100; } i = 0; while (i < 10) { bh = 100; while (bh < 151) { if (_root["bubble" + bh].hitTest(_root.floors[i])) { _root["bubble" + bh].removeMovieClip(); } bh++; } if (_root.floors[i].hitTest(_root.man._x, _root.man._y, true)) { g = true; a = false; f = _root.floors[i]._y + _root.level._y; } if (_root.floors[i].hitTest(_root.man._x, _root.man._y - _root.man._height, true)) { yspeed = 2; } if (_root.floors[i].hitTest((_root.man._x + (_root.man._width / 2)) + 3, _root.man._y - 45, true)) { rspeed = -(mspeed + 15); } if (_root.floors[i].hitTest((_root.man._x - (_root.man._width / 2)) + 3, _root.man._y - 45, true)) { lspeed = -(mspeed + 15); } i++; } if ((((((((((!_root.man.hitTest(_root.floors[0])) && (!_root.man.hitTest(_root.floors[1]))) && (!_root.man.hitTest(_root.floors[2]))) && (!_root.man.hitTest(_root.floors[3]))) && (!_root.man.hitTest(_root.floors[4]))) && (!_root.man.hitTest(_root.floors[5]))) && (!_root.man.hitTest(_root.floors[6]))) && (!_root.man.hitTest(_root.floors[7]))) && (!_root.man.hitTest(_root.floors[8]))) && (!_root.man.hitTest(_root.floors[9]))) { g = false; a = true; } if (!Key.isDown(38)) { keyup = true; } if (g) { yspeed = 0; jumping = false; djump = false; _root.man._y = f; if (!jumping) { if (keyup) { if (Key.isDown(38)) { keyup = false; jumping = true; g = false; yspeed = -jump; } } } if (!Key.isDown(39)) { rspeed = rspeed - fric; } if (!Key.isDown(37)) { lspeed = lspeed - fric; } } if (a) { yspeed = yspeed + grav; if (!djump) { if (keyup) { if (Key.isDown(38)) { keyup = false; djump = true; yspeed = -jump; _root.attachMovie("djump", "djump" + p, p); _root["djump" + p]._x = _root.man._x; _root["djump" + p]._y = _root.man._y; p++; } } } } if (_root.man._y > 800) { _root.man._y = 53; _root.man._x = 275; rspeed = 0; lspeed = 0; yspeed = 0; } if (p > 10) { p = 1; } if (rspeed > mspeed) { rspeed = mspeed; } if (lspeed > mspeed) { lspeed = mspeed; } if (Key.isDown(39)) { lspeed = lspeed - spd; rspeed = rspeed + spd; } if (Key.isDown(37)) { rspeed = rspeed - spd; lspeed = lspeed + spd; } if (lspeed < 0) { lspeed = 0; } if (rspeed < 0) { rspeed = 0; } if (yspeed > termv) { yspeed = termv; } } _root.Complete._visible = true; _root.Complete._x = _root.Complete._x + ((_root.man._x - _root.Complete._x) / 10); _root.Complete._y = _root.Complete._y + (((_root.man._y - 75) - _root.Complete._y) / 20); _root.Complete._width = distance; _root.Complete._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }; _root.man._y = 53; _root.man._x = 275; _root.mscore = 41; _root.score = 0;
Instance of Symbol 77 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 143 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 146 MovieClip in Frame 5
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 5
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 157 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 159 MovieClip in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 167 MovieClip in Frame 5
onClipEvent (load) { distance = 550; _visible = false; } onClipEvent (enterFrame) { if (_root.Paused) { this._visible = true; } else { this._visible = false; } _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Instance of Symbol 169 MovieClip "hurt" in Frame 5
onClipEvent (load) { distance = 550; } onClipEvent (enterFrame) { if (_alpha > 0) { _alpha = (_alpha - 7); } if (_alpha <= 0) { _alpha = 0; } _x = (_x + ((_root.man._x - _x) / 10)); _y = (_y + (((_root.man._y - 75) - _y) / 20)); this._width = distance; this._height = distance / 1.37; if (_root.MAX) { distance = 820; } else if (_root.MED) { distance = 615; } else if (_root.MIN) { distance = 410; } }
Frame 6
_root.man._y = 53; _root.man._x = 275; _root.mscore = 100; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 6
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 7
_root.man._y = 53; _root.man._x = 275; _root.mscore = 65; _root.score = 0;
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 7
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 7
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 8
_root.man._y = 53; _root.man._x = 275; _root.mscore = 71; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 8
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 9
_root.man._y = 53; _root.man._x = 275; _root.mscore = 59; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 9
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 9
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Frame 10
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 146 MovieClip in Frame 10
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 10
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 11
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 11
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 12
_root.man._y = 53; _root.man._x = 275; _root.mscore = 37; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 12
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 12
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 13
_root.man._y = 53; _root.man._x = 275; _root.mscore = 57; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 13
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 14
_root.man._y = 53; _root.man._x = 275; _root.mscore = 26; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 14
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 14
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 15
_root.man._y = 53; _root.man._x = 275; _root.mscore = 41; _root.score = 0;
Instance of Symbol 143 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 146 MovieClip in Frame 15
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 16
_root.man._y = 53; _root.man._x = 275; _root.mscore = 100; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 16
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 16
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 17
_root.man._y = 53; _root.man._x = 275; _root.mscore = 65; _root.score = 0;
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 17
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 18
_root.man._y = 53; _root.man._x = 275; _root.mscore = 71; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 18
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 18
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 19
_root.man._y = 53; _root.man._x = 275; _root.mscore = 59; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 19
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Frame 20
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 143 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { _root.man._y = 53; _root.man._x = 275; _root.hurt._alpha = 100; _root.Lives--; } }
Instance of Symbol 146 MovieClip in Frame 20
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 20
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 21
_root.man._y = 53; _root.man._x = 275; _root.mscore = 50; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 21
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 22
_root.man._y = 53; _root.man._x = 275; _root.mscore = 37; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 22
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 22
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 23
_root.man._y = 53; _root.man._x = 275; _root.mscore = 57; _root.score = 0;
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 146 MovieClip in Frame 23
onClipEvent (load) { empty = true; full = false; s = new Sound(); _visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level++; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 23
onClipEvent (load) { _root.bc = 30; _visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Frame 24
_root.man._y = 53; _root.man._x = 275; _root.mscore = 26; _root.score = 0;
Instance of Symbol 146 MovieClip in Frame 24
onClipEvent (load) { empty = true; full = false; s = new Sound(); this._visible = true; } onClipEvent (enterFrame) { if (_root.score < _root.mscore) { empty = true; full = false; } if (_root.score >= _root.mscore) { emmpty = false; full = true; } if (empty) { this.gotoAndStop("empty"); } if (full) { this.gotoAndStop("full"); if (this.hitTest(_root.man)) { if (this._visible) { s.attachSound("level"); s.start(0, 0); _root.Level = 0; _root.attachMovie("complete", "Complete", 99999); _root.Complete._x = _root.man._x; _root.Complete._y = _root.man._y; this._visible = false; } } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 150 MovieClip in Frame 24
onClipEvent (load) { _root.bc = 30; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.man)) { if (_visible) { c = new Sound(); _root.score++; c.attachSound("coin"); c.start(0, 0); _root.attachMovie("glint", "glint" + _root.bc, _root.bc); _root["glint" + _root.bc]._x = _x; _root["glint" + _root.bc]._y = _y; _root.bc++; _visible = false; } } }
Instance of Symbol 77 MovieClip in Frame 25
onClipEvent (load) { bt = 20; bc = 0; } onClipEvent (enterFrame) { bt--; if (bt < 0) { bt = 20; } if (bt <= 0) { this.bubbles.attachMovie("bubblestill", "bubble" + bc, bc); this.bubbles["bubble" + bc]._y = 212; this.bubbles["bubble" + bc]._x = -275 + (Math.random() * 550); bc++; } i = 0; while (i < 100) { this.bubbles["bubble" + i]._y = this.bubbles["bubble" + i]._y - 2; i++; } if (bc >= 100) { bc = 0; } }
Frame 26
_root.Lives = 5;
Symbol 7 MovieClip Frame 1
if (_root.Paused) { stop(); } else { play(); }
Symbol 7 MovieClip Frame 100
if (_root.Paused) { stop(); } else { play(); }
Symbol 7 MovieClip Frame 106
stop();
Symbol 13 MovieClip [djump] Frame 27
this.removeMovieClip();
Symbol 16 MovieClip [glint] Frame 30
this.removeMovieClip();
Symbol 22 Button
on (release) { _root.Pause = false; _root.gotoAndStop("level" + _root.Level); _root.Complete.removeMovieClip(); }
Symbol 25 Button
on (release) { _root.Paused = false; _root.gotoAndStop("home"); _root.Complete.removeMovieClip(); }
Symbol 44 MovieClip Frame 40
stop();
Symbol 58 Button
on (press) { tellTarget (_root) { nextFrame(); }; }
Symbol 59 Button
on (press) { gotoAndStop ("end"); _root.play(); }
Instance of Symbol 34 MovieClip in Symbol 60 MovieClip Frame 1
onClipEvent (load) { _root.stop(); PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndStop("lastframe"); } } onClipEvent (enterFrame) { PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndPlay("loaded"); } }
Symbol 60 MovieClip Frame 101
play();
Symbol 60 MovieClip Frame 165
stop();
Symbol 66 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 72 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 74 MovieClip Frame 1
function startAd(ngad_url) { trace("opening " + ngad_url); System.security.allowDomain("70.87.128.99"); System.security.allowInsecureDomain("70.87.128.99"); System.security.allowDomain("ads.shizmoo.com"); System.security.allowInsecureDomain("ads.shizmoo.com"); System.security.allowDomain("www.cpmstar.com"); System.security.allowInsecureDomain("www.cpmstar.com"); System.security.allowDomain("server.cpmstar.com"); System.security.allowInsecureDomain("server.cpmstar.com"); var ngads_redirect = new XML(); ngads_redirect.ignoreWhite = true; ngads_redirect.onLoad = function (success) { trace("[NEWGROUNDS FLASH ADS] :: You may get a 'Security Sandbox Violation' ... this is normal, do not freak out!"); if (success) { ng_ad.loadMovie(ngads_redirect.toString(), "GET"); } }; ngads_redirect.load(ngad_url); } if (NewgroundsAPI.getAdURL()) { startAd(NewgroundsAPI.getAdURL()); } NewgroundsAPI.onAdsApproved = function (ad_url) { startAd(ad_url); }; stop();
Symbol 184 MovieClip [__Packages.NewgroundsAPI] Frame 0
class NewgroundsAPI { static var tracker_id, host, version, debug, error_format, header_format, normal_format, link_format; function NewgroundsAPI () { } static function connectMovie(id) { if (!id) { SendError("Missing required 'id' parameter in NewgroundsAPI.connectMovie(id:Number)"); } else if (!tracker_id) { SendMessage("Connecting to API gateway..."); tracker_id = id; host = _url.split("/")[2].toLowerCase(); if (host.length < 1) { host = "localhost"; } var _local2 = new Object(); SendEvent(MOVIE_VIEWS); } } static function setMovieVersion(movie_version) { if (!movie_version) { SendError("Missing required 'version' in NewgroundsAPI.setMovieVersion(version:String)"); } else { version = movie_version; } } static function debugMode() { debug = true; } static function addCustomEvent(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else if (!stat_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else { custom_events[stat_name] = CUSTOM_STATS + stat_id; SendMessage("Created custom event: " + stat_name); } } static function addCustomLink(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else if (!stat_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else { custom_links[stat_name] = CUSTOM_STATS + stat_id; SendMessage((("Created custom link " + stat_id) + ": ") + stat_name); } } static function loadMySite() { SendLink(AUTHOR_SITE); } static function loadNewgrounds(special) { if (special) { var _local1 = {page:special}; } SendLink(NEWGROUNDS, _local1); } static function logCustomEvent(event_name) { if (!event_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.logCustomEvent(event_name:String)"); } else if (!custom_events[event_name]) { SendError("Attempted to log undefined custom event: " + event_name); } else { SendEvent(custom_events[event_name]); } } static function loadCustomLink(link_name) { if (!link_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.loadCustomLink(link_name:String)"); } else if (!custom_links[link_name]) { SendError("Attempted to open undefined custom link: " + link_name); } else { SendLink(custom_links[link_name]); } } static function getAdURL() { return(movie_options.ad_url); } static function getMovieURL() { if (movie_options.movie_url) { return(movie_options.movie_url); } return("Newgrounds.com"); } static function getNewVersionURL() { return((((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + NEW_VERSION); } static function SendEvent(id) { SendStat(id, false); } static function SendLink(id, extra) { SendStat(id, true, extra); } static function ReadGatewayData(params) { for (var _local2 in params) { params[_local2] = unescape(params[_local2]); movie_options[_local2] = params[_local2]; } if (params.settings_loaded) { SendMessage("You have successfully connected to the Newgrounds API gateway!"); SendMessage(("Movie Identified as '" + movie_options.movie_name) + "'"); if (movie_options.message) { SendMessage(movie_options.message); } if (movie_options.ad_url) { SendMessage("Your movie has been approved to run Flash Ads"); onAdsApproved(movie_options.ad_url); } if (movie_options.movie_version and (movie_options.movie_version.toString() != version.toString())) { SendMessage("WARNING: The movie version configured in your API settings does not match this movie's version!"); onNewVersionAvailable(movie_options.movie_version, getMovieURL(), getNewVersionURL()); } if (movie_options.deny_host) { SendMessage("You have blocked 'localHost' in your API settings."); SendMessage("If you wish to test your movie you will need to remove this block."); onDenyHost(host, getMovieURL(), getNewVersionURL()); } if (movie_options.request_portal_url == 1) { var _local4 = (((GATEWAY_URL + "?&id=") + tracker_id) + "&portal_url=") + escape(_url); var _local3 = new XML(); _local3.ignoreWhite = true; _local3.load(_local4); } } else if (!movie_options.settings_loaded) { SendError("Could not establish connection to the API gateway."); } } static function SendStat(stat_id, open_in_browser, extra) { if (!tracker_id) { SendError("API calls cannot be made without a valid movie id."); SendError("Did you remember to add the \"NewgroundsAPI.connectMovie()\" code?"); } else { var _local7 = (((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + stat_id; for (var _local9 in extra) { _local7 = _local7 + ((("&" + escape(_local9)) + "=") + escape(extra[_local9])); } trace(_local7); if (debug) { _local7 = _local7 + "&debug=1"; } if (open_in_browser) { getURL (_local7, "_blank"); } else { var _local10 = new XML(); _local10.ignoreWhite = true; _local10.onLoad = function (success) { var _local6 = new Object(); var _local3 = 0; while (_local3 < this.firstChild.childNodes.length) { var _local4 = this.firstChild.childNodes[_local3]; var _local5 = _local4.nodeName; var _local2 = _local4.attributes.value; if (_local2 == Number(_local2)) { _local2 = Number(_local2); } _local6[_local5] = _local2; _local3++; } NewgroundsAPI.ReadGatewayData(_local6); }; _local10.load(_local7); } } } static function SendError(msg) { trace("[NEWGROUNDS API ERROR] :: " + msg); } static function SendMessage(msg) { trace("[NEWGROUNDS API] :: " + msg); } static function InitTextFormats() { if (!error_format) { error_format = new TextFormat(); error_format.font = "Arial Black"; error_format.size = 48; error_format.color = 16711680 /* 0xFF0000 */; } if (!header_format) { header_format = new TextFormat(); header_format.font = "Arial Black"; header_format.size = 24; header_format.color = 16777215 /* 0xFFFFFF */; } if (!normal_format) { normal_format = new TextFormat(); normal_format.font = "Arial"; normal_format.bold = true; normal_format.size = 12; normal_format.color = 16777215 /* 0xFFFFFF */; } if (!link_format) { link_format = new TextFormat(); link_format.color = 16776960 /* 0xFFFF00 */; link_format.underline = true; } } static function onNewVersionAvailable(version, movie_url, redirect_url) { InitTextFormats(); var _local2 = new Object(); _local2.x = Stage.width / 2; _local2.y = Stage.height / 2; _root.createEmptyMovieClip("NGAPI_new_version_overlay", _root.getNextHighestDepth()); _root.NGAPI_new_version_overlay.lineStyle(1, 0, 100); _root.NGAPI_new_version_overlay.beginFill(0, 70); _root.NGAPI_new_version_overlay.moveTo(-10, -10); _root.NGAPI_new_version_overlay.lineTo(-10, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, -10); _root.NGAPI_new_version_overlay.lineTo(-10, -10); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.lineStyle(10, 0, 100); _root.NGAPI_new_version_overlay.beginFill(51); _root.NGAPI_new_version_overlay.moveTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.createEmptyMovieClip("exit", 1000); _root.NGAPI_new_version_overlay.exit.lineStyle(2, 39423, 100); _root.NGAPI_new_version_overlay.exit.beginFill(0, 50); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.endFill(); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 214, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 226, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 226, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 214, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.onMouseUp = function () { if (_root.NGAPI_new_version_overlay.exit.hitTest(_root._xmouse, _root._ymouse)) { _root.NGAPI_new_version_overlay.removeMovieClip(); } }; var _local3 = (("Version " + version) + " is now available at:") + newline; var _local5 = _local3.length; _local3 = _local3 + movie_url; var _local4 = _local3.length; _root.NGAPI_new_version_overlay.createTextField("mouseblocker", 99, -10, -10, 1000, 1000); _root.NGAPI_new_version_overlay.createTextField("newversion", 100, _local2.x - 210, _local2.y - 90, 400, 80); _root.NGAPI_new_version_overlay.newversion.text = "New Version Available!"; _root.NGAPI_new_version_overlay.newversion.setTextFormat(header_format); _root.NGAPI_new_version_overlay.createTextField("message", 101, (Stage.width - 400) / 2, Stage.height / 2, 400, 40); _root.NGAPI_new_version_overlay.message.text = _local3; _root.NGAPI_new_version_overlay.message.multiline = true; _root.NGAPI_new_version_overlay.message.wordWrap = true; _root.NGAPI_new_version_overlay.message.html = true; _root.NGAPI_new_version_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_new_version_overlay.message.setTextFormat(_local5, _local4, link_format); } static function onDenyHost(hostname, movie_url, redirect_url) { InitTextFormats(); _root.createEmptyMovieClip("NGAPI_deny_host_overlay", _root.getNextHighestDepth()); _root.NGAPI_deny_host_overlay.lineStyle(20, 0, 100); _root.NGAPI_deny_host_overlay.beginFill(6684672); _root.NGAPI_deny_host_overlay.moveTo(0, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, 0); _root.NGAPI_deny_host_overlay.endFill(); var _local2 = ("This movie has not been approved for use on " + hostname) + "."; _local2 = _local2 + "\r\rFor an aproved copy, please visit:\r"; var _local4 = _local2.length; _local2 = _local2 + movie_url; var _local3 = _local2.length; _root.NGAPI_deny_host_overlay.createTextField("mousekill", 100, 0, 0, Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.createTextField("error", 101, (Stage.width - 400) / 2, (Stage.height / 2) - 100, 400, 200); _root.NGAPI_deny_host_overlay.error.text = "ERROR!"; _root.NGAPI_deny_host_overlay.error.setTextFormat(error_format); _root.NGAPI_deny_host_overlay.createTextField("message", 102, (Stage.width - 400) / 2, Stage.height / 2, 400, 200); _root.NGAPI_deny_host_overlay.message.text = _local2; _root.NGAPI_deny_host_overlay.message.multiline = true; _root.NGAPI_deny_host_overlay.message.wordWrap = true; _root.NGAPI_deny_host_overlay.message.html = true; _root.NGAPI_deny_host_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_deny_host_overlay.message.setTextFormat(_local4, _local3, link_format); } static function isInstalled() { return(true); } static function onAdsApproved(ad_url) { } static var movie_options = new Object(); static var custom_events = new Object(); static var custom_links = new Object(); static var MOVIE_VIEWS = 1; static var AUTHOR_SITE = 2; static var NEWGROUNDS = 3; static var NEW_VERSION = 4; static var CUSTOM_STATS = 50; static var GATEWAY_URL = "http://www.ngads.com/gateway.php"; }
Symbol 82 Button
on (release) { _root.Level = 1; _root.Lives = 5; _root.gotoAndStop("level" + _root.Level); }
Symbol 85 Button
on (release) { _root.gotoAndStop("controls"); }
Symbol 88 Button
on (press) { _root.gotoAndStop("level0"); }
Symbol 91 Button
on (release) { _root.gotoAndStop("options"); }
Symbol 95 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 98 Button
on (release) { NewgroundsAPI.loadMySite(); }
Symbol 99 MovieClip Frame 1
stopAllSounds();
Symbol 99 MovieClip Frame 2
s = new Sound(); s.attachSound("song"); s.start(0, 999999); onEnterFrame = function () { i = 0; while (i < 3) { s.setVolume(_root.Volume); i++; } };
Symbol 99 MovieClip Frame 3
stop();
Symbol 104 Button
on (release) { _root.MIN = true; _root.MAX = false; _root.MED = false; }
Symbol 107 Button
on (release) { _root.MED = true; _root.MIN = false; _root.MAX = false; }
Symbol 110 Button
on (release) { _root.MAX = true; _root.MIN = false; _root.MED = false; }
Symbol 111 Button
on (release) { _root.Paused = false; _root.gotoAndStop("home"); }
Symbol 118 Button
on (release) { _root.sound.play(); }
Symbol 121 Button
on (release) { _root.sound.gotoAndStop(1); }
Symbol 129 Button
on (release) { _root._quality = "low"; }
Symbol 132 Button
on (release) { _root._quality = "medium"; }
Symbol 135 Button
on (release) { _root._quality = "high"; }
Symbol 157 MovieClip Frame 1
onEnterFrame = function () { score = (("Coins: " + _root.score) + "/") + _root.mscore; l = "Level: " + _root.Level; t = "Lives: " + _root.Lives; };
Symbol 159 MovieClip Frame 1
function 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 Button
on (release) { if (_root.Paused) { _root.Paused = false; } }
Instance of Symbol 124 MovieClip in Symbol 167 MovieClip Frame 1
on (press) { startDrag (""); } on (release) { stopDrag(); } onClipEvent (load) { _x = (_parent.bar._x + (_root.Volume * 2)); } onClipEvent (enterFrame) { i = 0; while (i < 2) { _y = _parent.bar._y; i++; } if (_x < _parent.bar._x) { _x = _parent.bar._x; stopDrag(); } if (_x > (_parent.bar._x + _parent.bar._width)) { _x = (_parent.bar._x + _parent.bar._width); stopDrag(); } _root.Volume = (_x - _parent.bar._x) / 2; }

Library Items

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

Instance Names

"sound"Frame 2Symbol 99 MovieClip
"bar"Frame 3Symbol 114 MovieClip
"level"Frame 5Symbol 140 MovieClip
"man"Frame 5Symbol 152 MovieClip
"hurt"Frame 5Symbol 169 MovieClip
"level"Frame 6Symbol 170 MovieClip
"level"Frame 7Symbol 171 MovieClip
"level"Frame 8Symbol 173 MovieClip
"level"Frame 9Symbol 175 MovieClip
"level"Frame 10Symbol 176 MovieClip
"level"Frame 11Symbol 177 MovieClip
"level"Frame 12Symbol 178 MovieClip
"level"Frame 13Symbol 179 MovieClip
"level"Frame 14Symbol 180 MovieClip
"level"Frame 15Symbol 140 MovieClip
"level"Frame 16Symbol 170 MovieClip
"level"Frame 17Symbol 171 MovieClip
"level"Frame 18Symbol 173 MovieClip
"level"Frame 19Symbol 175 MovieClip
"level"Frame 20Symbol 176 MovieClip
"level"Frame 21Symbol 177 MovieClip
"level"Frame 22Symbol 178 MovieClip
"level"Frame 23Symbol 179 MovieClip
"level"Frame 24Symbol 180 MovieClip
"ng_ad"Symbol 74 MovieClip Frame 1Symbol 73 MovieClip
"bubbles"Symbol 77 MovieClip Frame 1Symbol 75 MovieClip
"ground"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"bar"Symbol 167 MovieClip Frame 1Symbol 114 MovieClip
"ground"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 170 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 171 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 173 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 175 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 176 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 177 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 178 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 179 MovieClip Frame 1Symbol 139 MovieClip
"ground"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground1"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground2"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground3"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground5"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground6"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground7"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground9"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground8"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip
"ground4"Symbol 180 MovieClip Frame 1Symbol 139 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "level"
ExportAssets (56)Timeline Frame 1Symbol 2 as "coin"
ExportAssets (56)Timeline Frame 1Symbol 3 as "song"
ExportAssets (56)Timeline Frame 1Symbol 8 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 13 as "djump"
ExportAssets (56)Timeline Frame 1Symbol 16 as "glint"
ExportAssets (56)Timeline Frame 1Symbol 17 as "bubblestill"
ExportAssets (56)Timeline Frame 1Symbol 27 as "complete"
ExportAssets (56)Timeline Frame 1Symbol 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

scoreSymbol 153 EditableText""
lSymbol 154 EditableText""
tSymbol 155 EditableText""




http://swfchan.com/10/47372/info.shtml
Created: 1/5 -2019 23:39:08 Last modified: 1/5 -2019 23:39:08 Server time: 16/05 -2024 19:46:22