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

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

Super Mario Vetorial World.swf

This is the info page for
Flash #127519

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


Text
By

Thiago Martins Reis (Toady1104)

Control:

Arrows left/right move

Up look up

Down couch

Space jump

Press to go back to the main menu.

Press to toogle quality.

Press to retry the level if you die
(is in the same place than the box)

1 Coin

3 Coins

Next level

Hight Jump

If you picked all coins until the level than you're a
message (Clear!) will appear in the number of coins.

Well, is it. Enjoy playing
the 6 levels, and if you
pick up all coins, secrets!

Error

x

Exit

Help me!

Oh Mario, my hero...

Game by Thiago Martins Reis(Toady1104)

Thanx:
People than helped in Newgrounds BBS
Kart-man - For help in coins script
Nathan Stockton by the basic game engine
People than helped in other places
THANK YOU FOR PLAYING!

Here's some fun facts about that game:

Layers: 5
Frames: 895
Library itens: 164
Total number of coins: 146 (139 yelows, 7 blues)
Did you seen something on level 2?

ActionScript [AS1/AS2]

Frame 1
ponto = 0; secretos = false; stopAllSounds(); stage.showmenu = false; _root.kongregateServices.connect();
Frame 2
ponto = 0; stop();
Frame 3
stop();
Frame 6
limpo1 = false; stop(); _root._x = 0;
Frame 7
onEnterFrame = function () { coins = score.text; if (coins >= 30) { score.text = "Clear!"; limpo1 = true; } }; score.text = 0; stop();
Instance of Symbol 132 MovieClip "char" in Frame 7
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 139 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 285) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 285) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 95) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 95) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 95) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 95) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 95) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 95) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 295) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 295) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 50) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 50) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 110) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 110) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 81 MovieClip "1" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 96) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 96) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 96) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 96) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 7
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 96) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 96) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 7
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 81 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "3" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "4" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "5" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "7" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "8" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "9" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip "10" in Frame 7
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Frame 8
limpo2 = false; stop(); _root.kongregateScores.submit(1); _root._x = 0;
Frame 9
onEnterFrame = function () { coins = score.text; if ((coins >= 41) && (limpo1)) { score.text = "Clear!"; limpo2 = true; } }; score.text = 0; stop();
Instance of Symbol 132 MovieClip "char" in Frame 9
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 86 MovieClip in Frame 9
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 9
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 21 MovieClip in Frame 9
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 21 MovieClip in Frame 9
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 21 MovieClip in Frame 9
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 139 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 115) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 115) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 25) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 25) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 57) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 57) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 180) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 180) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 180) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 180) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 9
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 180) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 180) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 9
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Frame 10
limpo3 = false; stop(); _root.kongregateScores.submit(2); _root._x = 0;
Frame 11
onEnterFrame = function () { coins = score.text; if ((coins >= 26) && (limpo2)) { score.text = "Clear!"; limpo3 = true; } }; score.text = 0; stop();
Instance of Symbol 132 MovieClip "char" in Frame 11
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 86 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 232 MovieClip in Frame 11
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 90) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 90) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 11
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 90) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 90) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 11
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 90) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 90) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 11
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 22) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 22) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 11
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 232 MovieClip in Frame 11
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 80) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 80) { enemystepsleft = 0; enemydir = "right"; } } }
Frame 12
limpo4 = false; stop(); _root.kongregateScores.submit(3); _root._x = 0;
Frame 13
onEnterFrame = function () { coins = score.text; if ((coins >= 12) && (limpo3)) { score.text = "Clear!"; limpo4 = true; } }; score.text = 0; stop();
Instance of Symbol 132 MovieClip "char" in Frame 13
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 13
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 232 MovieClip in Frame 13
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 190) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 190) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 13
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 190) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 190) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 13
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 190) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 190) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Frame 14
limpo5 = false; stop(); _root.kongregateScores.submit(4); _root._x = 0;
Frame 15
onEnterFrame = function () { coins = score.text; if ((coins >= 19) && (limpo4)) { score.text = "Clear!"; limpo5 = true; } }; score.text = 0; stop();
Instance of Symbol 132 MovieClip "char" in Frame 15
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 263 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 263 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 263 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 21 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 21 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 86 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 15
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 139 MovieClip in Frame 15
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 164) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 164) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 15
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 49) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 49) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 15
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 49) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 49) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 144 MovieClip in Frame 15
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 49) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 49) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 15
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Frame 16
secretos = false; stop(); _root.kongregateScores.submit(5); _root._x = 0;
Frame 17
onEnterFrame = function () { coins = score.text; if ((coins >= 18) && (limpo5)) { score.text = "Clear!"; secretos = true; } }; score.text = 0; stop();
Instance of Symbol 278 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.char.olha)) { stopAllSounds(); _root.gotoAndPlay(18); } }
Instance of Symbol 132 MovieClip "char" in Frame 17
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 86 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 139 MovieClip in Frame 17
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 68) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 68) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 86 MovieClip in Frame 17
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 139 MovieClip in Frame 17
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 140) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 140) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 17
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 36) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 36) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 17
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 36) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 36) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 17
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 36) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 36) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 81 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Instance of Symbol 81 MovieClip in Frame 17
onClipEvent (enterFrame) { if (this.ganha.hitTest(_root.char.pegar)) { _root.score.text++; this.gotoAndPlay("vazia"); } if (_root.char.pegar.hitTest(this.block)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } if (_root.char.hitTest(this.cima)) { _root.char._y = _root.char._y - 6; _root.char.jump = 0; } }
Frame 18
_quality = "HIGH"; play(); _root.kongregateScores.submit(6); _root._x = 0;
Frame 39
stop();
Frame 40
play();
Frame 293
stop();
Frame 294
play();
Frame 892
onEnterFrame = function () { coins = score.text; if (secretos) { gotoAndStop (893); secretos = false; } }; stop();
Frame 893
stop();
Frame 894
stop();
Frame 895
stop();
Frame 896
limpo5 = false; stop(); _root.kongregateScores.submit(7); _root._x = 0;
Frame 897
onEnterFrame = function () { coins = score.text; if (coins >= 30) { score.text = "Clear!"; limpo1 = true; } }; score.text = 0; stop(); stop();
Instance of Symbol 277 MovieClip in Frame 897
onClipEvent (enterFrame) { if (this.hitTest(_root.char.olha)) { _root.gotoAndStop(893); } }
Instance of Symbol 400 MovieClip "char" in Frame 897
onClipEvent (load) { jumping = false; speed = 0; moedasX = _root.moedas._x; qualX = _root.qual._x; retryX = _root.retry._x; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.moedas._x = moedasX - _root._x; _root.qual._x = qualX - _root._x; _root.retry._x = retryX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (_root.teto.hitTest(this)) { this._y = this._y + 6; jump = 0; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.moedas._x = _root.moedas._x + speed; _root.qual._x = _root.qual._x + speed; _root.retry._x = _root.retry._x + speed; _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { var _local1 = _root; if (_local1.timer > _local1.maxshoottime) { _local1.shooting = false; unloadMovie(this); } _local1.timer++; _x = _x + _local1.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(32) && (!jumping)) { jumping = true; } if (Key.isDown(40) && (!jumping)) { this.gotoAndStop("abaixar"); speed = 0; } if (Key.isDown(38) && (!jumping)) { this.gotoAndStop("olhar"); speed = 0; } if (this._y > 300) { speed = 0; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; this.gotoAndStop("cair"); } if ((jump < -15) && (!pisar)) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 9; jumping = false; falling = false; this.gotoAndStop("right"); } } }
Instance of Symbol 168 MovieClip in Frame 897
onClipEvent (enterFrame) { if (_root.char.pegar.hitTest(this)) { _root.char._y = _root.char._y + 6; _root.char.jump = 0; } }
Instance of Symbol 86 MovieClip in Frame 897
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 897
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 86 MovieClip in Frame 897
onClipEvent (enterFrame) { if (_root.char.pe.hitTest(this)) { this.gotoAndPlay(2); _root.char.jump = 9; } }
Instance of Symbol 139 MovieClip in Frame 897
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 17) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 17) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 232 MovieClip in Frame 897
onClipEvent (load) { enemyspeed = 3; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 32) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 32) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 897
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 17) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 17) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 139 MovieClip in Frame 897
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.pe) && (!dead)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; _root.char.jump = 8; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 77) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 77) { enemystepsleft = 0; enemydir = "right"; } } }
Symbol 9 Button
on (release) { getURL ("http://www.newgrounds.com", "blank"); }
Symbol 14 Button
on (release) { _root.play(); }
Symbol 15 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 15 MovieClip Frame 2
gotoAndPlay (1);
Symbol 23 Button
on (press) { if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } }
Symbol 26 Button
on (release) { gotoAndStop (6); score.text = 0; secretos = false; _quality = "MEDIUM"; }
Symbol 29 Button
on (release) { gotoAndStop (3); }
Symbol 34 Button
on (release) { nextFrame(); }
Symbol 48 Button
on (release) { gotoAndStop (2); }
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 65 MovieClip in Symbol 66 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; _root.score.text++; _root.score.text++; unloadMovie (this); } }
Instance of Symbol 68 MovieClip in Symbol 69 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.nextFrame(); } }
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 14
stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 8
gotoAndStop (1);
Symbol 96 Button
on (release) { nextFrame(); score.text = 0; jumping = true; dead = false; }
Instance of Symbol 109 MovieClip in Symbol 110 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 54
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
stop();
Symbol 132 MovieClip Frame 3
stop();
Symbol 132 MovieClip Frame 4
stop();
Symbol 132 MovieClip Frame 5
stop();
Symbol 132 MovieClip Frame 6
stop();
Symbol 132 MovieClip Frame 7
stop();
Symbol 132 MovieClip Frame 8
stop();
Symbol 132 MovieClip Frame 9
stop();
Symbol 139 MovieClip Frame 1
stop();
Symbol 139 MovieClip Frame 2
stop();
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 2
stop();
Symbol 162 Button
on (release) { prevFrame(); score.text = 0; }
Symbol 165 Button
on (release) { jumping = true; dead = false; score.text = 0; nextFrame(); }
Instance of Symbol 203 MovieClip in Symbol 204 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Symbol 232 MovieClip Frame 1
stop();
Symbol 232 MovieClip Frame 2
stop();
Instance of Symbol 246 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char.olha)) { _root.nextFrame(); } }
Instance of Symbol 267 MovieClip in Symbol 268 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Instance of Symbol 273 MovieClip in Symbol 274 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } }
Symbol 354 Button
on (release) { stopAllSounds(); gotoAndStop (2); }
Symbol 357 Button
on (release) { nextFrame(); }
Symbol 359 Button
on (release) { gotoAndStop (895); }
Symbol 361 Button
on (release) { gotoAndStop (896); }
Symbol 366 Button
on (release) { gotoAndStop (893); }
Symbol 381 MovieClip Frame 7
stop();
Symbol 388 MovieClip Frame 1
play();
Symbol 388 MovieClip Frame 2
play();
Symbol 388 MovieClip Frame 3
play();
Symbol 388 MovieClip Frame 4
play();
Symbol 388 MovieClip Frame 5
play();
Symbol 388 MovieClip Frame 6
gotoAndPlay (1);
Symbol 400 MovieClip Frame 1
stop();
Symbol 400 MovieClip Frame 2
stop();
Symbol 400 MovieClip Frame 3
stop();
Symbol 400 MovieClip Frame 4
stop();
Symbol 400 MovieClip Frame 5
stop();
Symbol 400 MovieClip Frame 6
stop();
Symbol 400 MovieClip Frame 7
stop();
Symbol 400 MovieClip Frame 8
stop();
Symbol 400 MovieClip Frame 9
stop();

Library Items

Symbol 1 GraphicUsed by:15 320  Timeline
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:15
Symbol 4 GraphicUsed by:15
Symbol 5 GraphicUsed by:8 9
Symbol 6 GraphicUsed by:8 9
Symbol 7 GraphicUsed by:8 9
Symbol 8 MovieClipUses:5 6 7Used by:9
Symbol 9 ButtonUses:8 5 6 7Used by:15
Symbol 10 GraphicUsed by:14
Symbol 11 GraphicUsed by:14
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14
Symbol 14 ButtonUses:10 11 12 13Used by:15
Symbol 15 MovieClipUses:1 3 4 9 14Used by:Timeline
Symbol 16 GraphicUsed by:Timeline
Symbol 17 FontUsed by:18 19 160 291 298 311
Symbol 18 TextUses:17Used by:Timeline
Symbol 19 TextUses:17Used by:Timeline
Symbol 20 GraphicUsed by:21 23 26 29 34 52 53 96 162 165 357 359 361 365
Symbol 21 MovieClipUses:20Used by:23 26 29 34 52 53 81 96 132 139 145 155 158 162 165 176 184 189 214 227 238 240 259 261 265 357 359 361 365 375 376 377 400  Timeline
Symbol 22 GraphicUsed by:23 53
Symbol 23 ButtonUses:21 22 20Used by:Timeline
Symbol 24 GraphicUsed by:25 26
Symbol 25 MovieClipUses:24Used by:26
Symbol 26 ButtonUses:21 25 20 24Used by:Timeline
Symbol 27 GraphicUsed by:28 29  Timeline
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 ButtonUses:21 28 20 27Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 SoundUsed by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 ButtonUses:21 33 20Used by:Timeline
Symbol 35 FontUsed by:36 37 38 39 40 41 42 43 87 88 89 90 92 93 125 163 191 233 241 270 286 351 352 363 364
Symbol 36 TextUses:35Used by:Timeline
Symbol 37 TextUses:35Used by:Timeline
Symbol 38 TextUses:35Used by:Timeline
Symbol 39 TextUses:35Used by:Timeline
Symbol 40 TextUses:35Used by:Timeline
Symbol 41 TextUses:35Used by:Timeline
Symbol 42 TextUses:35Used by:Timeline
Symbol 43 TextUses:35Used by:Timeline
Symbol 44 GraphicUsed by:48 49 354 366
Symbol 45 GraphicUsed by:48 49 354 366
Symbol 46 GraphicUsed by:48 49 354 366
Symbol 47 GraphicUsed by:48 49 354 366
Symbol 48 ButtonUses:44 45 46 47Used by:Timeline
Symbol 49 ButtonUses:44 45 46 47Used by:Timeline
Symbol 50 GraphicUsed by:51 52 162
Symbol 51 MovieClipUses:50Used by:52 162
Symbol 52 ButtonUses:21 51 20 50Used by:Timeline
Symbol 53 ButtonUses:21 22 20Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:59 81 161
Symbol 56 GraphicUsed by:59
Symbol 57 GraphicUsed by:59
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:55 56 57 58Used by:60
Symbol 60 MovieClipUses:59Used by:Timeline
Symbol 61 GraphicUsed by:65
Symbol 62 GraphicUsed by:65
Symbol 63 GraphicUsed by:65
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:61 62 63 64Used by:66
Symbol 66 MovieClipUses:65Used by:Timeline
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:69
Symbol 69 MovieClipUses:68Used by:Timeline
Symbol 70 GraphicUsed by:74
Symbol 71 GraphicUsed by:74
Symbol 72 GraphicUsed by:74
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:70 71 72 73Used by:81
Symbol 75 ShapeTweeningUsed by:81
Symbol 76 GraphicUsed by:81
Symbol 77 GraphicUsed by:81
Symbol 78 GraphicUsed by:81
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:21 74 75 76 55 77 78 79 80Used by:Timeline
Symbol 82 GraphicUsed by:85
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:82 83 84Used by:86
Symbol 86 MovieClipUses:85Used by:Timeline
Symbol 87 TextUses:35Used by:Timeline
Symbol 88 TextUses:35Used by:Timeline
Symbol 89 TextUses:35Used by:Timeline
Symbol 90 TextUses:35Used by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 TextUses:35Used by:Timeline
Symbol 93 TextUses:35Used by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 GraphicUsed by:96 165
Symbol 96 ButtonUses:21 95 20Used by:Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:155 189 375  Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:155 184 189 375 376 377  Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:155 184 189 375 376  Timeline
Symbol 107 GraphicUsed by:109
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:107 108Used by:110
Symbol 110 MovieClipUses:109Used by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:Timeline
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:Timeline
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:Timeline
Symbol 118 GraphicUsed by:Timeline
Symbol 119 GraphicUsed by:132
Symbol 120 GraphicUsed by:123 132
Symbol 121 GraphicUsed by:123 299
Symbol 122 GraphicUsed by:123 299
Symbol 123 MovieClipUses:120 121 122Used by:132
Symbol 124 GraphicUsed by:132 300
Symbol 125 TextUses:35Used by:132 400
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:126 127Used by:132
Symbol 129 GraphicUsed by:132
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:119 120 123 124 21 125 128 129 130 131Used by:Timeline
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:133Used by:145 158 176 184 377  Timeline
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:135 136Used by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:137 21 138Used by:Timeline
Symbol 140 GraphicUsed by:142
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:140 141Used by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:142 143Used by:Timeline
Symbol 145 MovieClipUses:134 21Used by:Timeline
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:Timeline
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:Timeline
Symbol 150 TextUsed by:Timeline
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:155 176 189 376
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:155 189
Symbol 155 MovieClipUses:102 104 152 106 154 21Used by:Timeline
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:158 176 184 376  Timeline
Symbol 158 MovieClipUses:157 134 21Used by:Timeline
Symbol 159 GraphicUsed by:Timeline
Symbol 160 TextUses:17Used by:161
Symbol 161 MovieClipUses:55 160Used by:Timeline
Symbol 162 ButtonUses:21 51 20 50Used by:Timeline
Symbol 163 EditableTextUses:35Used by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 ButtonUses:21 95 20Used by:Timeline
Symbol 166 GraphicUsed by:Timeline
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:176 184 189 210 214 227 237 238 240 375  Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:Timeline
Symbol 171 GraphicUsed by:Timeline
Symbol 172 GraphicUsed by:Timeline
Symbol 173 GraphicUsed by:Timeline
Symbol 174 GraphicUsed by:Timeline
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:152 175 157 134 21 168Used by:Timeline
Symbol 177 GraphicUsed by:Timeline
Symbol 178 GraphicUsed by:Timeline
Symbol 179 GraphicUsed by:Timeline
Symbol 180 GraphicUsed by:Timeline
Symbol 181 GraphicUsed by:Timeline
Symbol 182 GraphicUsed by:184
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:134 182 104 157 106 183 168 21Used by:Timeline
Symbol 185 GraphicUsed by:189
Symbol 186 GraphicUsed by:189
Symbol 187 GraphicUsed by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:102 106 154 185 104 186 152 187 188 168 21Used by:Timeline
Symbol 190 GraphicUsed by:Timeline
Symbol 191 EditableTextUses:35Used by:Timeline
Symbol 192 GraphicUsed by:Timeline
Symbol 193 GraphicUsed by:Timeline
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:Timeline
Symbol 196 GraphicUsed by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 GraphicUsed by:205
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:204
Symbol 204 MovieClipUses:203Used by:205 235  Timeline
Symbol 205 MovieClipUses:201 204Used by:Timeline
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:Timeline
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:210 237 377
Symbol 210 MovieClipUses:209 168Used by:Timeline
Symbol 211 GraphicUsed by:214
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:214 238 376
Symbol 214 MovieClipUses:211 213 168 21Used by:Timeline
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:227 240 375
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:227 240 375
Symbol 219 GraphicUsed by:227
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:227 240 375
Symbol 222 GraphicUsed by:227
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:227 240
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:227 375
Symbol 227 MovieClipUses:216 218 219 221 222 224 226 21 168Used by:Timeline
Symbol 228 GraphicUsed by:230
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:228 229Used by:232
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:230 231Used by:Timeline
Symbol 233 EditableTextUses:35Used by:Timeline
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234 204Used by:Timeline
Symbol 236 GraphicUsed by:Timeline
Symbol 237 MovieClipUses:209 168Used by:Timeline
Symbol 238 MovieClipUses:213 168 21Used by:Timeline
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:216 221 218 239 224 21 168Used by:Timeline
Symbol 241 EditableTextUses:35Used by:Timeline
Symbol 242 GraphicUsed by:Timeline
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243Used by:Timeline
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245Used by:247
Symbol 247 MovieClipUses:246Used by:248
Symbol 248 MovieClipUses:247Used by:Timeline
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClipUses:249Used by:251  Timeline
Symbol 251 MovieClipUses:250Used by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 GraphicUsed by:Timeline
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:259 261 283 285 376 377  Timeline
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:259 261 283 285 376 377
Symbol 258 GraphicUsed by:259
Symbol 259 MovieClipUses:255 257 258 21Used by:Timeline
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:257 255 260 21Used by:Timeline
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:262Used by:265 281 375  Timeline
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:263 264 21Used by:Timeline
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:268
Symbol 268 MovieClipUses:267Used by:269
Symbol 269 MovieClipUses:268Used by:Timeline
Symbol 270 EditableTextUses:35Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClipUses:272Used by:274
Symbol 274 MovieClipUses:273Used by:275
Symbol 275 MovieClipUses:274Used by:Timeline
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:278  Timeline
Symbol 278 MovieClipUses:277Used by:Timeline
Symbol 279 GraphicUsed by:Timeline
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:263 280Used by:Timeline
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:257 255 282Used by:Timeline
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:255 257 284Used by:Timeline
Symbol 286 EditableTextUses:35Used by:Timeline
Symbol 287 GraphicUsed by:Timeline
Symbol 288 GraphicUsed by:Timeline
Symbol 289 GraphicUsed by:Timeline
Symbol 290 GraphicUsed by:Timeline
Symbol 291 TextUses:17Used by:Timeline
Symbol 292 GraphicUsed by:Timeline
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:Timeline
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:Timeline
Symbol 297 SoundUsed by:Timeline
Symbol 298 TextUses:17Used by:Timeline
Symbol 299 MovieClipUses:121 122Used by:Timeline
Symbol 300 MovieClipUses:124Used by:Timeline
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:Timeline
Symbol 303 GraphicUsed by:Timeline
Symbol 304 GraphicUsed by:Timeline
Symbol 305 GraphicUsed by:Timeline
Symbol 306 GraphicUsed by:Timeline
Symbol 307 GraphicUsed by:Timeline
Symbol 308 GraphicUsed by:310
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:308 309Used by:Timeline
Symbol 311 TextUses:17Used by:Timeline
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:Timeline
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:Timeline
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:Timeline
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:Timeline
Symbol 320 MovieClipUses:1Used by:Timeline
Symbol 321 GraphicUsed by:Timeline
Symbol 322 GraphicUsed by:Timeline
Symbol 323 GraphicUsed by:Timeline
Symbol 324 GraphicUsed by:Timeline
Symbol 325 GraphicUsed by:Timeline
Symbol 326 GraphicUsed by:Timeline
Symbol 327 GraphicUsed by:Timeline
Symbol 328 GraphicUsed by:Timeline
Symbol 329 GraphicUsed by:Timeline
Symbol 330 GraphicUsed by:Timeline
Symbol 331 GraphicUsed by:Timeline
Symbol 332 GraphicUsed by:Timeline
Symbol 333 GraphicUsed by:Timeline
Symbol 334 GraphicUsed by:Timeline
Symbol 335 GraphicUsed by:Timeline
Symbol 336 GraphicUsed by:Timeline
Symbol 337 GraphicUsed by:Timeline
Symbol 338 GraphicUsed by:Timeline
Symbol 339 GraphicUsed by:Timeline
Symbol 340 GraphicUsed by:Timeline
Symbol 341 GraphicUsed by:Timeline
Symbol 342 GraphicUsed by:Timeline
Symbol 343 GraphicUsed by:Timeline
Symbol 344 GraphicUsed by:Timeline
Symbol 345 GraphicUsed by:Timeline
Symbol 346 GraphicUsed by:Timeline
Symbol 347 GraphicUsed by:Timeline
Symbol 348 GraphicUsed by:Timeline
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:353
Symbol 351 TextUses:35Used by:353
Symbol 352 TextUses:35Used by:353
Symbol 353 MovieClipUses:350 351 352Used by:Timeline
Symbol 354 ButtonUses:44 45 46 47Used by:Timeline
Symbol 355 TextUsed by:Timeline
Symbol 356 GraphicUsed by:357
Symbol 357 ButtonUses:21 356 20Used by:Timeline
Symbol 358 GraphicUsed by:359 365
Symbol 359 ButtonUses:358 21 20Used by:Timeline
Symbol 360 GraphicUsed by:361
Symbol 361 ButtonUses:21 360 20Used by:Timeline
Symbol 362 GraphicUsed by:Timeline
Symbol 363 TextUses:35Used by:Timeline
Symbol 364 TextUses:35Used by:Timeline
Symbol 365 ButtonUses:358 21 20Used by:Timeline
Symbol 366 ButtonUses:44 45 46 47Used by:Timeline
Symbol 367 GraphicUsed by:Timeline
Symbol 368 GraphicUsed by:Timeline
Symbol 369 GraphicUsed by:Timeline
Symbol 370 GraphicUsed by:Timeline
Symbol 371 GraphicUsed by:375
Symbol 372 GraphicUsed by:375
Symbol 373 GraphicUsed by:375
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:102 371 106 104 372 218 373 221 216 374 263 226 21 168Used by:Timeline
Symbol 376 MovieClipUses:152 157 106 213 255 257 104 21Used by:Timeline
Symbol 377 MovieClipUses:134 104 209 255 257 21Used by:Timeline
Symbol 378 GraphicUsed by:381
Symbol 379 GraphicUsed by:381
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:378 379 380Used by:400
Symbol 382 GraphicUsed by:385
Symbol 383 GraphicUsed by:385
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:382 383 384Used by:400
Symbol 386 GraphicUsed by:388
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:386 387Used by:400
Symbol 389 GraphicUsed by:391
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:389 390Used by:400
Symbol 392 GraphicUsed by:396
Symbol 393 GraphicUsed by:396
Symbol 394 GraphicUsed by:396
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:392 393 394 395Used by:400
Symbol 397 GraphicUsed by:400
Symbol 398 GraphicUsed by:400
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClipUses:381 385 388 21 125 391 396 397 398 399Used by:Timeline

Instance Names

"qual"Frame 1Symbol 23 Button
"retry"Frame 3Symbol 52 Button
"qual"Frame 3Symbol 53 Button
"char"Frame 7Symbol 132 MovieClip
"rightblock"Frame 7Symbol 145 MovieClip
"1"Frame 7Symbol 81 MovieClip
"3"Frame 7Symbol 81 MovieClip
"4"Frame 7Symbol 81 MovieClip
"5"Frame 7Symbol 81 MovieClip
"7"Frame 7Symbol 81 MovieClip
"8"Frame 7Symbol 81 MovieClip
"9"Frame 7Symbol 81 MovieClip
"10"Frame 7Symbol 81 MovieClip
"fase"Frame 7Symbol 69 MovieClip
"ground"Frame 7Symbol 155 MovieClip
"leftblock"Frame 7Symbol 158 MovieClip
"moedas"Frame 7Symbol 161 MovieClip
"retry"Frame 7Symbol 162 Button
"score"Frame 7Symbol 163 EditableText
"qual"Frame 7Symbol 23 Button
"char"Frame 9Symbol 132 MovieClip
"leftblock"Frame 9Symbol 176 MovieClip
"rightblock"Frame 9Symbol 184 MovieClip
"ground"Frame 9Symbol 189 MovieClip
"moedas"Frame 9Symbol 161 MovieClip
"retry"Frame 9Symbol 162 Button
"score"Frame 9Symbol 191 EditableText
"qual"Frame 9Symbol 23 Button
"char"Frame 11Symbol 132 MovieClip
"rightblock"Frame 11Symbol 210 MovieClip
"leftblock"Frame 11Symbol 214 MovieClip
"ground"Frame 11Symbol 227 MovieClip
"score"Frame 11Symbol 233 EditableText
"moedas"Frame 11Symbol 161 MovieClip
"retry"Frame 11Symbol 162 Button
"qual"Frame 11Symbol 23 Button
"char"Frame 13Symbol 132 MovieClip
"rightblock"Frame 13Symbol 237 MovieClip
"leftblock"Frame 13Symbol 238 MovieClip
"ground"Frame 13Symbol 240 MovieClip
"score"Frame 13Symbol 241 EditableText
"moedas"Frame 13Symbol 161 MovieClip
"retry"Frame 13Symbol 162 Button
"qual"Frame 13Symbol 23 Button
"char"Frame 15Symbol 132 MovieClip
"rightblock"Frame 15Symbol 259 MovieClip
"leftblock"Frame 15Symbol 261 MovieClip
"ground"Frame 15Symbol 265 MovieClip
"score"Frame 15Symbol 270 EditableText
"moedas"Frame 15Symbol 161 MovieClip
"retry"Frame 15Symbol 162 Button
"qual"Frame 15Symbol 23 Button
"char"Frame 17Symbol 132 MovieClip
"ground"Frame 17Symbol 281 MovieClip
"leftblock"Frame 17Symbol 283 MovieClip
"rightblock"Frame 17Symbol 285 MovieClip
"score"Frame 17Symbol 286 EditableText
"moedas"Frame 17Symbol 161 MovieClip
"retry"Frame 17Symbol 162 Button
"qual"Frame 17Symbol 23 Button
"ground"Frame 897Symbol 375 MovieClip
"leftblock"Frame 897Symbol 376 MovieClip
"rightblock"Frame 897Symbol 377 MovieClip
"char"Frame 897Symbol 400 MovieClip
"retry"Frame 897Symbol 162 Button
"qual"Frame 897Symbol 23 Button
"bar"Symbol 15 MovieClip Frame 1Symbol 3 MovieClip
"block"Symbol 81 MovieClip Frame 1Symbol 21 MovieClip
"cima"Symbol 81 MovieClip Frame 1Symbol 21 MovieClip
"ganha"Symbol 81 MovieClip Frame 1Symbol 21 MovieClip
"pegar"Symbol 132 MovieClip Frame 3Symbol 21 MovieClip
"pe"Symbol 132 MovieClip Frame 7Symbol 21 MovieClip
"olha"Symbol 132 MovieClip Frame 9Symbol 21 MovieClip
"cab"Symbol 139 MovieClip Frame 1Symbol 21 MovieClip
"pegar"Symbol 400 MovieClip Frame 3Symbol 21 MovieClip
"pe"Symbol 400 MovieClip Frame 7Symbol 21 MovieClip
"olha"Symbol 400 MovieClip Frame 9Symbol 21 MovieClip

Labels

"loaded"Symbol 15 MovieClip Frame 3
"moeda"Symbol 60 MovieClip Frame 1
"cheia"Symbol 81 MovieClip Frame 1
"vazia"Symbol 81 MovieClip Frame 2
"normal"Symbol 86 MovieClip Frame 1
"hited"Symbol 86 MovieClip Frame 2
"idle"Symbol 132 MovieClip Frame 1
"run"Symbol 132 MovieClip Frame 2
"jump"Symbol 132 MovieClip Frame 3
"attack"Symbol 132 MovieClip Frame 4
"dead"Symbol 132 MovieClip Frame 5
"shoot"Symbol 132 MovieClip Frame 6
"cair"Symbol 132 MovieClip Frame 7
"abaixar"Symbol 132 MovieClip Frame 8
"olhar"Symbol 132 MovieClip Frame 9
"walk"Symbol 139 MovieClip Frame 1
"dead"Symbol 139 MovieClip Frame 2
"walk"Symbol 144 MovieClip Frame 1
"dead"Symbol 144 MovieClip Frame 2
"walk"Symbol 232 MovieClip Frame 1
"dead"Symbol 232 MovieClip Frame 2
"idle"Symbol 400 MovieClip Frame 1
"run"Symbol 400 MovieClip Frame 2
"jump"Symbol 400 MovieClip Frame 3
"attack"Symbol 400 MovieClip Frame 4
"dead"Symbol 400 MovieClip Frame 5
"shoot"Symbol 400 MovieClip Frame 6
"cair"Symbol 400 MovieClip Frame 7
"abaixar"Symbol 400 MovieClip Frame 8
"olhar"Symbol 400 MovieClip Frame 9




http://swfchan.com/26/127519/info.shtml
Created: 24/2 -2019 23:26:09 Last modified: 24/2 -2019 23:26:09 Server time: 12/05 -2024 06:06:03