Frame 1
stop();
_root.unlock1 = false;
_root.unlock2 = false;
_root.unlock3 = false;
_root.moedas = 0;
_root.kongregateServices.connect();
fscommand ("showmenu", "false");
Frame 2
stop();
Instance of Symbol 43 MovieClip "tocador" in Frame 2
onClipEvent (load) {
som = new Sound(this);
som.attachSound("unicosom");
som.start(0, 99);
_root.toca = true;
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.moedas > _root.unlocker) {
_root.unloker = _root.moedas;
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.moedas >= 4) {
_root.unlock1 = true;
}
if (_root.moedas >= 6) {
_root.unlock2 = true;
}
if (_root.moedas >= 8) {
_root.unlock3 = true;
}
_root.inv.timer.text--;
if (_root.inv.timer.text <= 0) {
_root.dead = true;
_root.inv.timer.text = 0;
}
}
Frame 3
var spawn = (random(9) + 1);
if (spawn == 1) {
gotoAndStop (4);
_root.jogador._x = 330;
_root.jogador._y = 265;
}
if (spawn == 2) {
gotoAndStop (5);
_root.jogador._x = 363.8;
_root.jogador._y = 233;
}
if (spawn == 3) {
gotoAndStop (9);
_root.jogador._x = 266;
_root.jogador._y = 238;
}
if (spawn == 4) {
gotoAndStop (11);
_root.jogador._x = 204.6;
_root.jogador._y = 152;
}
if (spawn == 5) {
gotoAndStop (12);
_root.jogador._x = 66;
_root.jogador._y = 225;
}
if (spawn == 6) {
gotoAndStop (14);
_root.jogador._x = 126;
_root.jogador._y = 238;
}
if (spawn == 7) {
gotoAndStop (16);
_root.jogador._x = 474.5;
_root.jogador._y = 239;
}
if (spawn == 8) {
gotoAndStop (17);
_root.jogador._x = 249;
_root.jogador._y = 230;
}
if (spawn == 9) {
gotoAndStop (18);
_root.jogador._x = 171.9;
_root.jogador._y = 182;
}
if (spawn == 10) {
gotoAndStop (20);
_root.jogador._x = 448.1;
_root.jogador._y = 182;
}
_root.inv.timer.text = 4500;
dead = false;
azul = 0;
verde = 0;
vermelho = 0;
moedas = 0;
k1 = false;
k2 = false;
k3 = false;
k4 = false;
k5 = false;
k6 = false;
m1 = false;
m2 = false;
m3 = false;
m4 = false;
m5 = false;
m6 = false;
m7 = false;
m8 = false;
m9 = false;
m10 = false;
m11 = false;
m12 = false;
m13 = false;
m14 = false;
m15 = false;
m16 = false;
m17 = false;
m18 = false;
m19 = false;
m20 = false;
m21 = false;
m22 = false;
m23 = false;
m24 = false;
m25 = false;
m26 = false;
m27 = false;
m28 = false;
m29 = false;
m20 = false;
p1 = false;
p2 = false;
p3 = false;
p4 = false;
p5 = false;
p6 = false;
lverde = false;
lazul = false;
_root.Painel.coins.text = 0;
_root.Painel.vermelho.text = 0;
_root.Painel.azul.text = 0;
_root.Painel.verde.text = 0;
_root.inv.coins.text = 0;
_root.inv.vermelho.text = 0;
_root.inv.azul.text = 0;
_root.inv.verde.text = 0;
Frame 4
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (5);
_root.jogador._y = 399;
}
};
Instance of Symbol 104 MovieClip "jogador" in Frame 4
onClipEvent (enterFrame) {
if (_root.dead == true) {
moveSpeed = 0;
_root.Painel._x = 230;
_root.Painel._y = 200;
_root.kongregateScores.submit(_root.moedas);
} else {
_root.Painel._x = 690;
_root.Painel._y = 160;
gotoAndStop (1);
moveSpeed = 7;
}
if (Key.isDown(39)) {
if (_root.Walls.hitTest(getBounds(_root).xMax, _y, true)) {
} else {
this._x = this._x + moveSpeed;
}
} else if (Key.isDown(38)) {
if (_root.Walls.hitTest(_x, getBounds(_root).yMin, true)) {
} else {
this._y = this._y - moveSpeed;
}
} else if (Key.isDown(40)) {
if (_root.Walls.hitTest(_x, getBounds(_root).yMax, true)) {
} else {
this._y = this._y + moveSpeed;
}
} else if (Key.isDown(37)) {
if (_root.Walls.hitTest(getBounds(_root).xMin, _y, true)) {
} else {
this._x = this._x - moveSpeed;
}
}
}
Instance of Symbol 116 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m1)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m1 = true;
}
if (_root.m1) {
this.gotoAndStop(33);
}
}
Instance of Symbol 148 MovieClip "Painel" in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(82)) {
_root.gotoAndPlay(3);
}
if (Key.isDown(66)) {
_root.gotoAndStop(2);
}
if (Key.isDown(77)) {
if (_root.toca == false) {
_root.tocador.som.setVolume(100);
_root.toca = true;
} else {
_root.tocador.som.setVolume(0);
_root.toca = false;
}
if (Key.isDown(81)) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
}
}
Frame 5
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (8);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (4);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (7);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (6);
_root.jogador._x = 1;
}
};
Instance of Symbol 154 MovieClip "trava" in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.azul >= 1) {
_root.azul = _root.azul - 1;
_root.inv.azul.text--;
_root.p1 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
if (_root.p1 && (!p1a)) {
this.gotoAndPlay(2);
p1a = true;
}
}
Instance of Symbol 156 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
Instance of Symbol 156 MovieClip in Frame 5
onClipEvent (enterFrame) {
para = 7;
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + para;
}
}
Frame 6
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (9);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (5);
_root.jogador._x = 549;
}
};
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 116 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m4)) {
_root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m4 = true;
}
if (_root.m4) {
this.gotoAndStop(33);
}
}
Frame 7
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (10);
_root.jogador._y = 399;
}
if (_root.jogador._x > 550) {
gotoAndStop (5);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m5)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m5 = true;
}
if (_root.m5) {
this.gotoAndStop(33);
}
}
Frame 8
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (5);
_root.jogador._y = 1;
}
};
Instance of Symbol 185 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 6;
}
}
Instance of Symbol 195 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m2)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m2 = true;
}
if (_root.m2) {
this.gotoAndStop(33);
}
}
Frame 9
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (11);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (6);
_root.jogador._y = 1;
}
if (_root.jogador._x > 550) {
gotoAndStop (28);
_root.jogador._x = 1;
}
};
Instance of Symbol 204 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
if (_root.lazul == true) {
gotoAndStop (2);
}
}
Instance of Symbol 116 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m3)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m3 = true;
}
if (_root.m3) {
this.gotoAndStop(33);
}
}
Instance of Symbol 209 MovieClip "chave" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k2)) {
_root.azul = _root.azul + 1;
_root.Painel.azul.text++;
_root.inv.azul.text++;
_root.k2 = true;
}
if (_root.k2) {
this.gotoAndStop(2);
}
}
Frame 10
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (14);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (7);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (12);
_root.jogador._x = 549;
}
};
Instance of Symbol 211 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
if (_root.lverde) {
gotoAndStop (2);
}
}
Instance of Symbol 215 MovieClip "des1" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.lverde)) {
gotoAndPlay (2);
_root.lverde = true;
}
}
Frame 11
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (32);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (9);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (13);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (26);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m10)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m10 = true;
}
if (_root.m10) {
this.gotoAndStop(33);
}
}
Instance of Symbol 245 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.vermelho >= 1) {
_root.vermelho = _root.vermelho - 1;
_root.inv.vermelho.text--;
_root.p2 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
if (_root.p2 && (!p2a)) {
this.gotoAndPlay(2);
p2a = true;
}
}
Instance of Symbol 247 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
Frame 12
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (37);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (17);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (10);
_root.jogador._x = 1;
}
};
Instance of Symbol 204 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
if (_root.lazul) {
gotoAndStop (2);
}
}
Instance of Symbol 159 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 185 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 2.5;
}
}
Instance of Symbol 116 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m6)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m6 = true;
}
if (_root.m6) {
this.gotoAndStop(33);
}
}
Frame 13
onEnterFrame = function () {
if (_root.jogador._x < 0) {
gotoAndStop (14);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (11);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m7)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m7 = true;
}
if (_root.m7) {
this.gotoAndStop(33);
}
}
Frame 14
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (18);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (10);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (15);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (13);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m8)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m8 = true;
}
if (_root.m8) {
this.gotoAndStop(33);
}
}
Frame 15
onEnterFrame = function () {
if (_root.jogador._x < 0) {
gotoAndStop (16);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (14);
_root.jogador._x = 1;
}
};
Instance of Symbol 209 MovieClip "chave" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k1)) {
_root.azul = _root.azul + 1;
_root.Painel.azul.text++;
_root.inv.azul.text++;
_root.k1 = true;
}
if (_root.k1) {
this.gotoAndStop(2);
}
}
Frame 16
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (22);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (17);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (33);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (15);
_root.jogador._x = 1;
}
};
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 271 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.verde >= 1) {
_root.verde = _root.verde - 1;
_root.inv.verde.text--;
_root.p3 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
if (_root.p3 && (!p3a)) {
this.gotoAndPlay(2);
p3a = true;
}
}
Instance of Symbol 273 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
Instance of Symbol 273 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
Instance of Symbol 116 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m9)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m9 = true;
}
if (_root.m9) {
this.gotoAndStop(33);
}
}
Frame 17
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (16);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (34);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (12);
_root.jogador._x = 1;
}
};
Instance of Symbol 245 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.vermelho >= 1) {
_root.vermelho = _root.vermelho - 1;
_root.inv.vermelho.text--;
_root.p4 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
if (_root.p4 && (!p4a)) {
this.gotoAndPlay(2);
p4a = true;
}
}
Instance of Symbol 247 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
Instance of Symbol 247 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 7;
}
}
Frame 18
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (35);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (14);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (20);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (19);
_root.jogador._x = 1;
}
};
Instance of Symbol 271 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.verde >= 1) {
_root.verde = _root.verde - 1;
_root.inv.verde.text--;
_root.p5 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
if (_root.p5 && (!p5a)) {
this.gotoAndPlay(2);
p5a = true;
}
}
Instance of Symbol 273 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
Instance of Symbol 273 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
Frame 19
onEnterFrame = function () {
if (_root.jogador._x < 0) {
gotoAndStop (18);
_root.jogador._x = 549;
}
};
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 185 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 1.7;
}
}
Instance of Symbol 185 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 1.7;
}
}
Instance of Symbol 290 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k3)) {
_root.vermelho = _root.vermelho + 1;
_root.Painel.vermelho.text++;
_root.inv.vermelho.text++;
_root.k3 = true;
}
if (_root.k3) {
this.gotoAndStop(2);
}
}
Frame 20
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (23);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (21);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (18);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m11)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m11 = true;
}
if (_root.m11) {
this.gotoAndStop(33);
}
}
Frame 21
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (22);
_root.jogador._y = 1;
}
if (_root.jogador._x > 550) {
gotoAndStop (20);
_root.jogador._x = 1;
}
};
Instance of Symbol 290 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k6)) {
_root.vermelho = _root.vermelho + 1;
_root.Painel.vermelho.text++;
_root.inv.vermelho.text++;
_root.k6 = true;
}
if (_root.k6) {
this.gotoAndStop(2);
}
}
Frame 22
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (21);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (16);
_root.jogador._y = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m23)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m23 = true;
}
if (_root.m23) {
this.gotoAndStop(33);
}
}
Instance of Symbol 116 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m12)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m12 = true;
}
if (_root.m12) {
this.gotoAndStop(33);
}
}
Frame 23
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (20);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (25);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (24);
_root.jogador._x = 1;
}
};
Instance of Symbol 185 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x - 5.3;
}
}
Instance of Symbol 185 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x + 5.3;
}
}
Instance of Symbol 116 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m13)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m13 = true;
}
if (_root.m13) {
this.gotoAndStop(33);
}
}
Frame 24
onEnterFrame = function () {
if (_root.jogador._x < 0) {
gotoAndStop (23);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (32);
_root.jogador._x = 1;
}
};
Instance of Symbol 159 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 116 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m14)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m14 = true;
}
if (_root.m14) {
this.gotoAndStop(33);
}
}
Frame 25
onEnterFrame = function () {
if (_root.jogador._x > 550) {
gotoAndStop (23);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m15)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m15 = true;
}
if (_root.m15) {
this.gotoAndStop(33);
}
}
Instance of Symbol 116 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m16)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m16 = true;
}
if (_root.m16) {
this.gotoAndStop(33);
}
}
Frame 26
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (36);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (11);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (27);
_root.jogador._x = 1;
}
};
Instance of Symbol 159 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 185 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 2;
}
}
Instance of Symbol 154 MovieClip "trava" in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
if (_root.azul >= 1) {
_root.azul = _root.azul - 1;
_root.inv.azul.text--;
_root.p6 = true;
} else if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
if (_root.p6 && (!p6a)) {
this.gotoAndPlay(2);
p6a = true;
}
}
Instance of Symbol 156 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 7;
}
}
Instance of Symbol 156 MovieClip in Frame 26
onClipEvent (enterFrame) {
para = 7;
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + para;
}
}
Instance of Symbol 116 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m17)) {
trace((_root.moedas = _root.moedas + 1));
_root.inv.coins.text++;
_root.Painel.coins.text++;
trace(_root.unlock1);
_root.m17 = true;
}
if (_root.m17) {
this.gotoAndStop(33);
}
}
Frame 27
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (28);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (26);
_root.jogador._x = 549;
}
};
Instance of Symbol 116 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m18)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m18 = true;
}
if (_root.m18) {
this.gotoAndStop(33);
}
}
Frame 28
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (27);
_root.jogador._y = 399;
}
if (_root.jogador._y > 400) {
gotoAndStop (29);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (9);
_root.jogador._x = 549;
}
if (_root.jogador._x > 550) {
gotoAndStop (31);
_root.jogador._x = 1;
}
};
Instance of Symbol 159 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 185 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._x = _root.jogador._x - 2.3;
}
}
Instance of Symbol 312 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k5)) {
_root.verde = _root.verde + 1;
_root.Painel.verde.text++;
_root.inv.verde.text++;
_root.k5 = true;
}
if (_root.k5) {
this.gotoAndStop(2);
}
}
Frame 29
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (28);
_root.jogador._y = 399;
}
if (_root.jogador._x > 550) {
gotoAndStop (30);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m21)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m21 = true;
}
if (_root.m21) {
this.gotoAndStop(33);
}
}
Frame 30
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (31);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (29);
_root.jogador._x = 549;
}
};
Instance of Symbol 312 MovieClip in Frame 30
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.k2)) {
_root.verde = _root.verde + 1;
_root.Painel.verde.text++;
_root.inv.verde.text++;
_root.k2 = true;
}
if (_root.k2) {
this.gotoAndStop(2);
}
}
Frame 31
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (30);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (28);
_root.jogador._x = 549;
}
};
Instance of Symbol 195 MovieClip in Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m19)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m19 = true;
}
if (_root.m19) {
this.gotoAndStop(33);
}
}
Instance of Symbol 211 MovieClip in Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
if (_root.lverde) {
gotoAndStop (2);
}
}
Frame 32
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (11);
_root.jogador._y = 1;
}
if (_root.jogador._x < 0) {
gotoAndStop (24);
_root.jogador._x = 549;
}
};
Instance of Symbol 195 MovieClip in Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m20)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m20 = true;
}
if (_root.m20) {
this.gotoAndStop(33);
}
}
Instance of Symbol 116 MovieClip in Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m22)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m22 = true;
}
if (_root.m22) {
this.gotoAndStop(33);
}
}
Instance of Symbol 116 MovieClip in Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m24)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m24 = true;
}
if (_root.m24) {
this.gotoAndStop(33);
}
}
Frame 33
onEnterFrame = function () {
if (_root.jogador._x > 550) {
gotoAndStop (16);
_root.jogador._x = 1;
}
};
Instance of Symbol 195 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m23)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m23 = true;
}
if (_root.m23) {
this.gotoAndStop(33);
}
}
Frame 34
onEnterFrame = function () {
if (_root.jogador._x > 550) {
gotoAndStop (17);
_root.jogador._x = 1;
}
};
Instance of Symbol 326 MovieClip in Frame 34
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.lazul)) {
gotoAndPlay (2);
_root.lazul = true;
}
}
Frame 35
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (18);
_root.jogador._y = 1;
}
};
Instance of Symbol 195 MovieClip in Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m25)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m25 = true;
}
if (_root.m25) {
this.gotoAndStop(33);
}
}
Frame 36
onEnterFrame = function () {
if (_root.jogador._y > 400) {
gotoAndStop (26);
_root.jogador._y = 1;
}
};
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 3;
}
}
Instance of Symbol 159 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 159 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(2);
}
}
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 3;
}
}
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y - 3;
}
}
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 3;
}
}
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 3;
}
}
Instance of Symbol 185 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador)) {
_root.jogador._y = _root.jogador._y + 3;
}
}
Instance of Symbol 195 MovieClip in Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m26)) {
trace((_root.moedas = _root.moedas + 3));
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m26 = true;
trace(_root.unlock1);
}
if (_root.m26) {
this.gotoAndStop(33);
}
}
Frame 37
onEnterFrame = function () {
if (_root.jogador._y < 0) {
gotoAndStop (12);
_root.jogador._y = 399;
}
if (_root.jogador._x < 0) {
gotoAndStop (38);
_root.jogador._x = 549;
}
};
Instance of Symbol 195 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m27)) {
_root.moedas = _root.moedas + 3;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.Painel.coins.text++;
_root.m27 = true;
}
if (_root.m27) {
this.gotoAndStop(33);
}
}
Frame 38
onEnterFrame = function () {
if (_root.jogador._x > 550) {
gotoAndStop (37);
_root.jogador._x = 1;
}
};
Instance of Symbol 116 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.m28)) {
_root.moedas = _root.moedas + 1;
_root.inv.coins.text++;
_root.Painel.coins.text++;
_root.m28 = true;
}
if (_root.m28) {
this.gotoAndStop(33);
}
}
Frame 39
stop();
Frame 40
stop();
Frame 41
stop();
Frame 42
stop();
Frame 43
gotoAndStop (49);
Frame 44
stop();
Frame 45
stop();
Frame 46
stop();
Frame 47
stop();
Frame 48
stop();
Frame 49
stop();
Frame 50
gotoAndStop (44);
Symbol 11 Button
on (release) {
getURL ("http://www.newgrounds.com", "blank");
}
Symbol 16 Button
on (release) {
_root.play();
}
Symbol 17 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 17 MovieClip Frame 2
gotoAndPlay (1);
Symbol 31 Button
on (press) {
_root.gotoAndPlay(3);
}
Symbol 33 Button
on (press) {
_root.gotoAndStop(40);
}
Symbol 35 Button
on (press) {
_root.gotoAndStop(39);
}
Symbol 38 Button
on (press) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
Symbol 40 Button
on (press) {
if (_root.toca == false) {
_root.tocador.som.setVolume(100);
_root.toca = true;
} else {
_root.tocador.som.setVolume(0);
_root.toca = false;
}
}
Symbol 41 MovieClip Frame 79
stop();
Instance of Symbol 46 MovieClip in Symbol 48 MovieClip Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(32);
}
}
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 31
gotoAndPlay (17);
Symbol 104 MovieClip Frame 63
gotoAndPlay (52);
Symbol 104 MovieClip Frame 100
stop();
Symbol 104 MovieClip Frame 110
stop();
Symbol 104 MovieClip Frame 111
stop();
Symbol 104 MovieClip Frame 112
stop();
Symbol 104 MovieClip Frame 132
stop();
Symbol 116 MovieClip Frame 32
gotoAndPlay (1);
Symbol 116 MovieClip Frame 33
stop();
Symbol 130 MovieClip Frame 1
stop();
Symbol 144 Button
on (press) {
_root.gotoAndPlay(3);
}
Symbol 147 Button
on (press) {
_root.gotoAndStop(2);
}
Symbol 148 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 23
stop();
Instance of Symbol 175 MovieClip in Symbol 178 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
}
Symbol 195 MovieClip Frame 32
gotoAndPlay (1);
Symbol 195 MovieClip Frame 33
stop();
Instance of Symbol 201 MovieClip in Symbol 202 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(101);
}
}
Symbol 204 MovieClip Frame 1
stop();
Symbol 204 MovieClip Frame 2
stop();
Symbol 209 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 2
stop();
Symbol 211 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 2
stop();
Symbol 215 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 49
stop();
Instance of Symbol 175 MovieClip in Symbol 219 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
}
Symbol 227 MovieClip Frame 1
stop();
Instance of Symbol 227 MovieClip in Symbol 231 MovieClip Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(111);
}
}
Instance of Symbol 227 MovieClip in Symbol 236 MovieClip Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(112);
}
}
Instance of Symbol 227 MovieClip in Symbol 239 MovieClip Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(112);
}
}
Symbol 245 MovieClip Frame 1
stop();
Symbol 245 MovieClip Frame 23
stop();
Instance of Symbol 46 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(32);
}
}
Instance of Symbol 46 MovieClip in Symbol 251 MovieClip Frame 65
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(32);
}
}
Instance of Symbol 227 MovieClip in Symbol 257 MovieClip Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(111);
}
}
Instance of Symbol 175 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
}
Instance of Symbol 201 MovieClip "lam" in Symbol 265 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.jogador.hitTest(_root.lam) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(101);
}
}
Instance of Symbol 201 MovieClip in Symbol 265 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(101);
}
}
Symbol 271 MovieClip Frame 1
stop();
Symbol 271 MovieClip Frame 23
stop();
Instance of Symbol 277 MovieClip in Symbol 283 MovieClip Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(113);
}
}
Symbol 290 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 2
stop();
Symbol 312 MovieClip Frame 1
stop();
Symbol 312 MovieClip Frame 2
stop();
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 49
stop();
Instance of Symbol 175 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.jogador) && (!_root.dead)) {
_root.dead = true;
_root.jogador.gotoAndPlay(64);
}
}
Symbol 343 Button
on (press) {
_root.gotoAndStop(2);
}
Symbol 347 Button
on (press) {
if (_root.unlock1 == true) {
_root.gotoAndStop(41);
}
}
Symbol 349 Button
on (press) {
if (_root.unlock2 == true) {
_root.gotoAndStop(42);
}
}
Symbol 351 Button
on (press) {
if (_root.unlock3 == true) {
_root.gotoAndStop(44);
}
}
Symbol 359 Button
on (press) {
_root.nextFrame();
}
Symbol 362 Button
on (press) {
_root.prevFrame();
}
Symbol 374 MovieClip Frame 37
gotoAndPlay (1);
Symbol 387 MovieClip Frame 39
gotoAndPlay (1);
Symbol 396 MovieClip Frame 37
Symbol 396 MovieClip Frame 54
gotoAndPlay (1);
Symbol 399 MovieClip Frame 23
gotoAndPlay (1);
Symbol 406 MovieClip Frame 33
gotoAndPlay (1);