Frame 1
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");
stop();
_root.gameover_mc._visible = false;
_global.init = function () {
var _local1 = _root;
_global.bf = 67;
_global.lives = 3;
_local1.killed = "0";
_local1.bl_txt.text = bf;
_local1.gameover_mc._visible = false;
_local1.hero._visible = true;
_local1.hero.enabled = true;
};
_global.kapisesi = function (gelen) {
_root.ses.gotoAndPlay(2);
};
_global.levelcountbox = function (gelen) {
_global.bf--;
_root.bl_txt.text = bf;
ak++;
};
_global.replay = function () {
init();
_root.gotoAndPlay(2);
_root.gameover_mc._visible = false;
};
_global.killlive = function () {
_global.lives--;
displaylives();
trace(lives);
};
_global.addlive = function () {
if (lives < 3) {
_global.lives++;
displaylives();
}
trace(lives);
};
_global.displaylives = function () {
var _local1 = _root;
switch (lives) {
case 3 :
_local1.lives_mc.gotoAndStop(1);
return;
case 2 :
_local1.lives_mc.gotoAndStop(3);
return;
case 1 :
_local1.lives_mc.gotoAndStop(5);
return;
case 0 :
_local1.lives_mc.gotoAndStop(7);
return;
case -1 :
_local1.lives_mc.gotoAndStop(7);
_local1.gameover_mc._visible = true;
_local1.gameover_mc.gotoAndPlay(1);
_local1.hero._visible = false;
_local1.hero.enabled = false;
}
};
stopAllSounds();
Instance of Symbol 62 MovieClip in Frame 1
onClipEvent (enterFrame) {
text = ((int(_parent.getBytesLoaded() / 1000) add " KBYTES OF ") add int(_parent.getBytesTotal() / 1000)) add " LOADED ...";
if (_parent.getBytesTotal() == _parent.getBytesLoaded()) {
_parent.gotoAndStop(2);
}
}
Frame 2
function restart() {
var _local1 = _root;
_local1.jumping = 0;
_local1.hero._x = 72;
_local1.hero._y = 270;
_local1.hero.gotoAndStop(1);
playGame = 1;
}
score = 0;
placeBackground();
stop();
stopAllSounds();
mysound = new Sound();
mysound.attachSound("m\u00FCzik");
mysound.start(0, 50);
Frame 3
tk = 3;
ak = 0;
playGame = 1;
stop();
_root.bl_txt.text = _global.bf;
displaylives();
Instance of Symbol 201 MovieClip "c1" in Frame 3
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 292 MovieClip "b1" in Frame 3
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c3" in Frame 3
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.c3.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c2" in Frame 3
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.c2.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 293 MovieClip in Frame 3
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 316 MovieClip "hero" in Frame 3
onClipEvent (load) {
function move(x, y) {
var _local1 = y;
var _local2 = x;
var _local3 = _root;
h = 0;
if (!_local3.map.hitTest((_x + _local2) + b.xmin, (_y + _local1) + b.ymin, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmax, (_y + _local1) + b.ymin, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmin, (_y + _local1) + b.ymax, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmax, (_y + _local1) + b.ymax, true)) {
_x = (_x + _local2);
_y = (_y + _local1);
h = 1;
}
}
}
}
return(h);
}
s = 4;
this.stop();
_root.restart();
b = this.getBounds(this);
}
onClipEvent (enterFrame) {
if (this.enabled == true) {
if (_root.playGame) {
falling = move(0, s);
if ((Key.isDown(32) && (!falling)) && (!_root.jumping)) {
_root.jumping = 1;
vel = -12;
_root.jumpSound.gotoAndPlay(2);
}
if (Key.isDown(37)) {
move(-s, 0);
this.gotoAndStop(2);
this.sonic.play();
}
if (Key.isDown(39)) {
move(s, 0);
this.gotoAndStop(1);
this.sonic.play();
}
if (_root.jumping) {
if (vel <= 12) {
h = move(0, vel - s);
if ((h == false) && (vel < 0)) {
vel = vel * -1;
}
vel++;
} else {
_root.jumping = 0;
}
}
}
}
}
onClipEvent (keyUp) {
this.sonic.gotoAndStop(1);
}
Frame 4
tk = 3;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b2" in Frame 4
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c5" in Frame 4
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c6" in Frame 4
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c4" in Frame 4
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 334 MovieClip in Frame 4
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 90) {
count = 0;
n = -n;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 293 MovieClip in Frame 4
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 5
tk = 3;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b3" in Frame 5
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c7" in Frame 5
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c8" in Frame 5
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 178 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 201 MovieClip "c9" in Frame 5
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 334 MovieClip in Frame 5
onClipEvent (load) {
this._x = 255;
this._y = 285;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 120) {
count = 0;
n = -n;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 5
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 6
tk = 3;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 201 MovieClip "c10" in Frame 6
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c11" in Frame 6
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c12" in Frame 6
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 292 MovieClip "b4" in Frame 6
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 293 MovieClip in Frame 6
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 6
onClipEvent (load) {
n = -1;
this._x = 300;
this._y = 305;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 110) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 7
tk = 4;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b5" in Frame 7
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c13" in Frame 7
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c14" in Frame 7
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c15" in Frame 7
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c16" in Frame 7
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 339 MovieClip in Frame 7
onClipEvent (load) {
n = -1;
this._x = 250;
this._y = 305;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 110) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 293 MovieClip in Frame 7
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 170) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 8
tk = 3;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b6" in Frame 8
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 178 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 285;
_root.hero._y = 160;
}
}
Instance of Symbol 201 MovieClip "c18" in Frame 8
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c19" in Frame 8
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c17" in Frame 8
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 183 MovieClip in Frame 8
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 293 MovieClip in Frame 8
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 9
tk = 8;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 201 MovieClip "c24" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c20" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c23" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c21" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c26" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c22" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 292 MovieClip "b7" in Frame 9
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c25" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 218 MovieClip "c27" in Frame 9
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Frame 10
tk = 7;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 178 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 178 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 54;
_root.hero._y = 306;
}
}
Instance of Symbol 292 MovieClip "b8" in Frame 10
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 218 MovieClip "c33" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c31" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c32" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c30" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c36" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c35" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c34" in Frame 10
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 293 MovieClip in Frame 10
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 10
onClipEvent (load) {
n = -1;
this._x = 295;
this._y = 145;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 100) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 10
onClipEvent (load) {
n = 1;
this._x = 80;
this._y = 145;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 70) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 11
tk = 4;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b9" in Frame 11
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c41" in Frame 11
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c43" in Frame 11
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c42" in Frame 11
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c44" in Frame 11
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 381 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.enabled == true) {
if (this.hitTest(_root.hero)) {
this._visible = false;
this.enabled = false;
addlive();
}
}
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 60) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 293 MovieClip in Frame 11
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 12
tk = 6;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b10" in Frame 12
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 178 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 201 MovieClip "c52" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c51" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c53" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c55" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c54" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c50" in Frame 12
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 183 MovieClip in Frame 12
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 12
onClipEvent (load) {
n = -1;
this._x = 250;
this._y = 305;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 110) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 183 MovieClip in Frame 12
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 13
tk = 5;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b11" in Frame 13
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c64" in Frame 13
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c61" in Frame 13
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c62" in Frame 13
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c63" in Frame 13
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 227 MovieClip in Frame 13
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorA.gotoAndStop(2);
}
}
Instance of Symbol 218 MovieClip "c60" in Frame 13
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (load) {
this._x = 295;
this._y = 60;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 334 MovieClip in Frame 13
onClipEvent (load) {
this._x = 200;
this._y = 285;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 14
tk = 5;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 178 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 178 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 60;
_root.hero._y = 80;
}
}
Instance of Symbol 178 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 60;
_root.hero._y = 80;
}
}
Instance of Symbol 227 MovieClip in Frame 14
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorB.gotoAndStop(2);
}
}
Instance of Symbol 292 MovieClip "b12" in Frame 14
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 201 MovieClip "c72" in Frame 14
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c71" in Frame 14
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c70" in Frame 14
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c74" in Frame 14
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c73" in Frame 14
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 293 MovieClip in Frame 14
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 183 MovieClip in Frame 14
onClipEvent (load) {
this._x = 240;
this._y = 295;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 15
tk = 4;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b13" in Frame 15
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 227 MovieClip in Frame 15
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorC.gotoAndStop(2);
}
}
Instance of Symbol 201 MovieClip "c81" in Frame 15
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c80" in Frame 15
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c82" in Frame 15
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 218 MovieClip "c83" in Frame 15
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 339 MovieClip in Frame 15
onClipEvent (load) {
n = -1;
this._x = 295;
this._y = 216;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 90) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 183 MovieClip in Frame 15
onClipEvent (load) {
this._x = 230;
this._y = 70;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 16
tk = 4;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b14" in Frame 16
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 178 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 285;
_root.hero._y = 80;
}
}
Instance of Symbol 201 MovieClip "c91" in Frame 16
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c93" in Frame 16
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c90" in Frame 16
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c92" in Frame 16
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 227 MovieClip in Frame 16
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorD.gotoAndStop(2);
}
}
Instance of Symbol 227 MovieClip in Frame 16
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorD.gotoAndStop(2);
}
}
Instance of Symbol 183 MovieClip in Frame 16
onClipEvent (load) {
this._x = 230;
this._y = 70;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Instance of Symbol 339 MovieClip in Frame 16
onClipEvent (load) {
n = -1;
this._x = 250;
this._y = 305;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 90) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 17
tk = 4;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 292 MovieClip "b15" in Frame 17
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 420 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(250) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.1;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 350) {
rePos();
}
}
Instance of Symbol 218 MovieClip "c100" in Frame 17
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c101" in Frame 17
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c103" in Frame 17
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 201 MovieClip "c102" in Frame 17
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 183 MovieClip in Frame 17
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
if (_root.killed == "0") {
_root.playGame = false;
_root.killed = "1";
_root.hero.gotoAndStop(3);
killlive();
}
}
}
Frame 18
tk = 1;
ak = 0;
playGame = 1;
placeBackground();
stop();
Instance of Symbol 201 MovieClip "c200" in Frame 18
onClipEvent (load) {
taken = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(18);
delete this.onEnterFrame;
this.enabled = false;
if (taken == 0) {
levelcountbox(this);
taken = 1;
}
}
}
Instance of Symbol 292 MovieClip "b16" in Frame 18
onClipEvent (load) {
ses = "cal";
}
onClipEvent (enterFrame) {
trace(ses);
if (_parent.ak >= _parent.tk) {
this._alpha = 100;
if (ses == "cal") {
kapisesi();
ses = "calma";
}
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
} else {
this._alpha = 20;
}
}
Instance of Symbol 334 MovieClip in Frame 18
/* no clip actions */
Instance of Symbol 334 MovieClip in Frame 18
/* no clip actions */
Symbol 48 MovieClip Frame 14
stop();
Symbol 57 Button
on (press) {
_global.replay();
}
Symbol 58 Button
on (release) {
gotoAndPlay ("bir");
}
Symbol 59 MovieClip Frame 19
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 84 Button
on (release) {
getURL ("http://lightforce.freestuff.gr/", "_blank");
}
Symbol 85 Button
on (release) {
getURL ("http://www.berkayunal.com/", "_blank");
}
Symbol 86 Button
on (release) {
getURL ("http://www.mehmetsaygin.com/", "_blank");
}
Symbol 178 MovieClip Frame 20
gotoAndPlay (1);
Symbol 201 MovieClip Frame 15
gotoAndPlay (1);
Symbol 218 MovieClip Frame 15
gotoAndPlay (1);
Instance of Symbol 201 MovieClip "c6" in Symbol 228 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 218 MovieClip "c27" in Symbol 228 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorC.gotoAndStop(2);
}
}
Symbol 233 Button
on (press) {
init();
nextFrame();
}
Symbol 238 Button
on (release) {
getURL ("http://www.flashfunpages.com");
}
Symbol 292 MovieClip Frame 11
gotoAndPlay (1);
Symbol 292 MovieClip Frame 12
gotoAndPlay (1);
Symbol 307 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 2
stop();
Symbol 307 MovieClip Frame 3
stop();
Symbol 307 MovieClip Frame 4
stop();
Symbol 307 MovieClip Frame 5
stop();
Symbol 307 MovieClip Frame 6
stop();
Symbol 307 MovieClip Frame 7
stop();
Symbol 307 MovieClip Frame 8
stop();
Symbol 315 MovieClip Frame 34
_root.killed = "0";
_root.restart();
Instance of Symbol 311 MovieClip "sonic" in Symbol 316 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Instance of Symbol 311 MovieClip "sonic" in Symbol 316 MovieClip Frame 2
/* no clip actions */
Symbol 318 MovieClip Frame 1
stop();
Instance of Symbol 220 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Symbol 366 MovieClip Frame 51
stop();
Instance of Symbol 220 MovieClip in Symbol 378 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Instance of Symbol 220 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Instance of Symbol 388 MovieClip "doorA" in Symbol 392 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 388 MovieClip "doorB" in Symbol 393 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Symbol 396 MovieClip Frame 41
stop();
Instance of Symbol 388 MovieClip "doorC" in Symbol 398 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 388 MovieClip "doorD" in Symbol 416 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Symbol 424 MovieClip Frame 41
stop();
Symbol 431 MovieClip Frame 41
stop();