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

swfchan turned sixteen years old the day before yesterday! (5may2024)

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

Mario Minigame.swf

This is the info page for
Flash #11123

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


Text
Rohan

Productions

Play

end

YOU DIE

Try again?

The End...for now

ActionScript [AS1/AS2]

Frame 1
if (_root._framesloaded >= _root._totalframes) { gotoAndStop (3); } else { setProperty(_root.loaderbar, _xscale , (_root._framesloaded / _root._totalframes) * 100); }
Instance of Symbol 21 MovieClip "loaderbar" in Frame 1
onClipEvent (enterFrame) { loaded = _root.getBytesLoaded(); total = _root.getBytesTotal(); this._xscale = (loaded / total) * 100; }
Frame 3
stop();
Frame 4
var coincount = 12; var lvl = 1; var die = 0; stop(); stopAllSounds(); music = new Sound(); music.attachSound("levelmusic"); music.start(0, 100); coin.duplicateMovieClip("coin1", 5); _root.coin1._x = 29.9; _root.coin1._y = 73.3; coin.duplicateMovieClip("coin2", 6); _root.coin2._x = 52.4; _root.coin2._y = 73.3; coin.duplicateMovieClip("coin3", 7); _root.coin3._x = 73.3; _root.coin3._y = 73.3; coin.duplicateMovieClip("coin4", 8); _root.coin4._x = 122.3; _root.coin4._y = 48.4; coin.duplicateMovieClip("coin5", 9); _root.coin5._x = 139.8; _root.coin5._y = 48.4; coin.duplicateMovieClip("coin6", 10); _root.coin6._x = 181.3; _root.coin6._y = 38.9; coin.duplicateMovieClip("coin7", 11); _root.coin7._x = 101.3; _root.coin7._y = 113.8; coin.duplicateMovieClip("coin8", 12); _root.coin8._x = 121.3; _root.coin8._y = 113.8; coin.duplicateMovieClip("coin9", 13); _root.coin9._x = 144.3; _root.coin9._y = 113.8; coin.duplicateMovieClip("coin10", 14); _root.coin10._x = 204.3; _root.coin10._y = 175.8; coin.duplicateMovieClip("coin11", 15); _root.coin11._x = 233.3; _root.coin11._y = 175.8; coin.duplicateMovieClip("coin12", 16); _root.coin12._x = 263.4; _root.coin12._y = 107.8;
Instance of Symbol 31 MovieClip in Frame 4
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 14 MovieClip [coin] "coin" in Frame 4
onClipEvent (enterFrame) { if (this.hittest(_root.circle) == true) { coinsound = new Sound(_root); coinsound.attachSound("coinwav"); coinsound.start(); _root.coincount = _root.coincount - 1; this.removeMovieClip(); } if (_root.die == 1) { this.removeMovieClip(); } }
Instance of Symbol 36 MovieClip "door2" in Frame 4
onClipEvent (enterFrame) { if (_root.coincount == 0) { this._x = 233; this._y = 75.5; poof = new Sound(); poof.attachSound("poofwav"); poof.start(); _root.coincount = -1; } if (_root.circle.hittest(_root.door2._x, _root.door2._y, false) == true) { _root.nextFrame(); } }
Instance of Symbol 46 MovieClip in Frame 4
onClipEvent (load) { fall = false; a = 2; _name = "circle"; jump = 0; speed = 5; jumpheight = 10; maxfall = -10; jumpsound = new Sound(); jumpsound.attachSound("jumpwav"); } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(Key.SPACE) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; jumpsound.start(); if (a == 1) { this.gotoAndStop(8); a = 3; } if (a == 2) { this.gotoAndStop(7); a = 4; } } if (jump != undefined) { if (fall == true) { if (a == 1) { this.gotoAndStop(8); a = 3; } if (a == 2) { this.gotoAndStop(7); a = 4; } } if (maxfall < jump) { jump--; } _y = (_y - jump); } if (Key.isDown(Key.LEFT) && (8 < _x)) { _x = (_x - speed); if (a < 3) { this.gotoAndStop(5); } a = 1; } else if (a == 1) { this.gotoAndStop(4); } if (Key.isDown(Key.RIGHT) && (_x < 267)) { _x = (_x + speed); if ((a < 3) && (a != 1)) { this.gotoAndStop(2); } a = 2; } else if (a == 2) { this.gotoAndStop(1); } if (a == 3) { a = 1; } if (a == 4) { a = 2; } }
Instance of Symbol 49 MovieClip in Frame 4
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 49 MovieClip in Frame 4
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 49 MovieClip in Frame 4
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Frame 5
stop(); var coincount = 10; _root.lvl = 2; coin.duplicateMovieClip("coin1", 5); _root.coin1._x = 80.8; _root.coin1._y = 123.8; coin.duplicateMovieClip("coin2", 6); _root.coin2._x = 32.9; _root.coin2._y = 82.8; coin.duplicateMovieClip("coin3", 7); _root.coin3._x = 58.9; _root.coin3._y = 82.8; coin.duplicateMovieClip("coin4", 8); _root.coin4._x = 84.8; _root.coin4._y = 82.8; coin.duplicateMovieClip("coin5", 9); _root.coin5._x = 127.3; _root.coin5._y = 33.9; coin.duplicateMovieClip("coin6", 10); _root.coin6._x = 147.8; _root.coin6._y = 33.9; coin.duplicateMovieClip("coin7", 11); _root.coin7._x = 186.8; _root.coin7._y = 82.8; coin.duplicateMovieClip("coin8", 12); _root.coin8._x = 213.8; _root.coin8._y = 82.8; coin.duplicateMovieClip("coin9", 13); _root.coin9._x = 241.3; _root.coin9._y = 82.8; coin.duplicateMovieClip("coin10", 14); _root.coin10._x = 188.8; _root.coin10._y = 123.8;
Instance of Symbol 50 MovieClip "blocker2" in Frame 5
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = 0; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Instance of Symbol 56 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle) == true) { stopAllSounds(); _root.gotoAndStop(7); } }
Instance of Symbol 56 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.circle) == true) { stopAllSounds(); _root.gotoAndStop(7); } }
Instance of Symbol 59 MovieClip "door3" in Frame 5
onClipEvent (enterFrame) { if (_root.coincount == 0) { this._x = 137.8; this._y = 58.6; poof = new Sound(); poof.attachSound("poofwav"); poof.start(); _root.coincount = -1; } if (_root.circle.hittest(_root.door3._x, _root.door3._y, false) == true) { _root.circle._x = 26.4; _root.circle._y = 140.3; _root.gotoAndStop(6); } }
Instance of Symbol 60 MovieClip in Frame 5
onClipEvent (load) { fall = false; a = 2; _name = "circle"; jump = 0; speed = 5; jumpheight = 10; maxfall = -8; jumpsound = new Sound(); jumpsound.attachSound("jumpwav"); } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if ((Key.isDown(Key.SPACE) && (fall == false)) && (jump == undefined)) { fall = true; jump = jumpheight; jumpsound.start(); if (a == 1) { this.gotoAndStop(8); a = 3; } if (a == 2) { this.gotoAndStop(7); a = 4; } } if (jump != undefined) { if (fall == true) { if (a == 1) { this.gotoAndStop(8); a = 3; } if (a == 2) { this.gotoAndStop(7); a = 4; } } if (maxfall < jump) { jump--; } _y = (_y - jump); } if (Key.isDown(Key.LEFT) && (8 < _x)) { _x = (_x - speed); if (a < 3) { this.gotoAndStop(5); } a = 1; } else if (a == 1) { this.gotoAndStop(4); } if (Key.isDown(Key.RIGHT) && (_x < 267)) { _x = (_x + speed); if ((a < 3) && (a != 1)) { this.gotoAndStop(2); } a = 2; } else if (a == 2) { this.gotoAndStop(1); } if (a == 3) { a = 1; } if (a == 4) { a = 2; } }
Instance of Symbol 49 MovieClip in Frame 5
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } if ((hitTest(_root.circle) && (ymax < _root.circle.ymin)) && (-1 < _root.circle.jump)) { _root.circle.jump = -1 * _root.circle.jump; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } }
Frame 6
stop(); _root.lvl = 3;
Instance of Symbol 64 MovieClip in Frame 6
onClipEvent (enterFrame) { if (_root.circle.hittest(this._x, this._y, false) == true) { _root.gotoAndStop(8); } }
Instance of Symbol 65 MovieClip in Frame 6
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } }
Instance of Symbol 65 MovieClip in Frame 6
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } }
Instance of Symbol 65 MovieClip in Frame 6
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } }
Instance of Symbol 65 MovieClip in Frame 6
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } }
Instance of Symbol 65 MovieClip in Frame 6
onClipEvent (load) { activated = false; down = false; } onClipEvent (enterFrame) { xmin = getBounds(_root).xMin; xmax = getBounds(_root).xMax; ymin = getBounds(_root).yMin; ymax = getBounds(_root).yMax; if (((xMin < _root.circle.xMax) && (_root.circle.xMin < xMax)) && (_root.circle.yMax < yMin)) { if (yMin < (_root.circle.yMax - (_root.circle.jump * 2))) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } } if (Math.round(yMin) < Math.round(_root.circle.yMax)) { if (hitTest(_root.circle) && (_root.circle.xmax < xmin)) { _root.circle._x = _root.circle._x - _root.circle.speed; } if (hitTest(_root.circle) && (xmax < _root.circle.xmin)) { _root.circle._x = _root.circle._x + _root.circle.speed; } } if (((activated == true) && (!hitTest(_root.circle))) && (_root.circle.jump == undefined)) { _root.circle.jump = -2; activated = false; } if (((hitTest(_root.circle) && (ymin < _root.circle.ymax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } if (((((ymin < (_root.circle.ymax - _root.circle.jump)) && (_root.circle.xMin < xMax)) && (xMin < _root.circle.xMax)) && (_root.circle.jump != undefined)) && (_root.circle._y < _y)) { if (_root.circle.jump < 0) { _root.circle._y = ymin - (_root.circle._height / 2); _root.circle.jump = undefined; _root.circle.fall = false; activated = true; } } }
Frame 7
_root.die = 1;
Frame 8
die = 1;
Symbol 29 Button
on (release) { gotoAndPlay (3); }
Symbol 46 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 69 Button
on (release) { _root.die = 0; stopAllSounds(); music = new Sound(); music.attachSound("levelmusic"); music.start(0, 100); gotoAndPlay(_root.lvl + 3); }
Symbol 72 Button
on (release) { _root.die = 0; stopAllSounds(); music = new Sound(); music.attachSound("levelmusic"); music.start(0, 100); gotoAndPlay (4); }

Library Items

Symbol 1 Sound [poofwav]
Symbol 2 Sound [jumpwav]
Symbol 3 Sound [coinwav]
Symbol 4 Sound [levelmusic]
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:13 14
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:13 14
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:13 14
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:13 14
Symbol 13 MovieClip [coin]Uses:6 8 10 12
Symbol 14 MovieClip [coin]Uses:6 8 10 12Used by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 FontUsed by:17 18
Symbol 17 TextUses:16Used by:Timeline
Symbol 18 TextUses:16Used by:Timeline
Symbol 19 GraphicUsed by:Timeline
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:Timeline
Symbol 22 GraphicUsed by:29
Symbol 23 FontUsed by:24
Symbol 24 TextUses:23Used by:29
Symbol 25 GraphicUsed by:29
Symbol 26 GraphicUsed by:29
Symbol 27 SoundUsed by:29
Symbol 28 SoundUsed by:29
Symbol 29 ButtonUses:22 24 25 26 27 28Used by:Timeline
Symbol 30 GraphicUsed by:31 50
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:Timeline
Symbol 34 BitmapUsed by:35
Symbol 35 GraphicUses:34Used by:36
Symbol 36 MovieClipUses:35Used by:Timeline
Symbol 37 BitmapUsed by:38 42
Symbol 38 GraphicUses:37Used by:41 46 60
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:41
Symbol 41 MovieClipUses:40 38Used by:46 60
Symbol 42 GraphicUses:37Used by:46 60
Symbol 43 BitmapUsed by:44 45
Symbol 44 GraphicUses:43Used by:46 60
Symbol 45 GraphicUses:43Used by:46 60
Symbol 46 MovieClipUses:38 41 42 44 45Used by:Timeline
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:49 65
Symbol 49 MovieClipUses:48Used by:Timeline
Symbol 50 MovieClipUses:30Used by:Timeline
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:55 56
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:55 56
Symbol 55 MovieClipUses:52 54Used by:56
Symbol 56 MovieClipUses:52 54 55Used by:Timeline
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:59
Symbol 59 MovieClipUses:58Used by:Timeline
Symbol 60 MovieClipUses:38 41 42 44 45Used by:Timeline
Symbol 61 GraphicUsed by:64
Symbol 62 FontUsed by:63 66 67 71
Symbol 63 TextUses:62Used by:64
Symbol 64 MovieClipUses:61 63Used by:Timeline
Symbol 65 MovieClipUses:48Used by:Timeline
Symbol 66 TextUses:62Used by:Timeline
Symbol 67 TextUses:62Used by:Timeline
Symbol 68 GraphicUsed by:69 72
Symbol 69 ButtonUses:68Used by:Timeline
Symbol 70 SoundUsed by:Timeline
Symbol 71 TextUses:62Used by:Timeline
Symbol 72 ButtonUses:68Used by:Timeline

Instance Names

"loaderbar"Frame 1Symbol 21 MovieClip
"coin"Frame 4Symbol 14 MovieClip [coin]
"door2"Frame 4Symbol 36 MovieClip
"blocker2"Frame 5Symbol 50 MovieClip
"door3"Frame 5Symbol 59 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "poofwav"
ExportAssets (56)Timeline Frame 1Symbol 2 as "jumpwav"
ExportAssets (56)Timeline Frame 1Symbol 3 as "coinwav"
ExportAssets (56)Timeline Frame 1Symbol 4 as "levelmusic"
ExportAssets (56)Timeline Frame 1Symbol 13 as "coin"
ExportAssets (56)Timeline Frame 1Symbol 14 as "coin"
ExportAssets (56)Timeline Frame 4Symbol 14 as "coin"
ExportAssets (56)Timeline Frame 5Symbol 14 as "coin"
ExportAssets (56)Timeline Frame 6Symbol 14 as "coin"




http://swfchan.com/3/11123/info.shtml
Created: 7/6 -2019 16:23:42 Last modified: 7/6 -2019 16:23:42 Server time: 08/05 -2024 04:44:50