Frame 1
mcLoad.onEnterFrame = function () {
gLoad = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (gLoad >= 100) {
_root.gotoAndPlay("opening", "opening");
} else {
this.t = gLoad + "%";
this.gotoAndStop(gLoad);
}
};
stop();
Frame 2
_root.stop();
HeartSEObj = new Sound();
HeartSEObj.attachSound("HeartSE");
SuperSEObj = new Sound();
SuperSEObj.attachSound("SuperSE");
DevilSEObj = new Sound();
DevilSEObj.attachSound("DevilSE");
Frame 3
_root.stop();
Frame 4
_root.stop();
Frame 5
_global.point = 0;
_global.stage_num = 1;
_global.heartpoint = 0;
_global.devilpoint = 0;
_global.superpoint = 0;
_root.game_frame.duplicateMovieClip("game_frame2", 5000);
_root.game_frame2._x = 250;
_root.game_frame2._y = 190;
_root.game_frame.removeMovieClip();
_root.stop();
Frame 6
_root.stop();
_root.game_frame2.timer.nextFrame();
Instance of Symbol 94 MovieClip "angel" in Frame 6
onClipEvent (load) {
function MainCharMove() {
if (Key.isDown(37)) {
if (-20 < Xspeed) {
Xspeed = Xspeed + (-Xmove);
KeyDown = true;
}
this.gotoAndStop("left");
}
if (Key.isDown(39)) {
if (Xspeed < 20) {
Xspeed = Xspeed + Xmove;
KeyDown = true;
}
this.gotoAndStop("right");
}
if (Key.isDown(38)) {
if (-20 < Yspeed) {
Yspeed = Yspeed + (-Ymove);
KeyDown = true;
}
gravity = 0.8;
}
if (Key.isDown(40)) {
if (Yspeed < 20) {
Yspeed = Yspeed + Ymove;
KeyDown = true;
}
gravity = 0.8;
}
}
var Xmove = 0.2;
var Ymove = 0.2;
var Xspeed = 0;
var Yspeed = 0;
var Xposition = this._x;
var Yposition = this._y;
var gravity = 0.8;
var Xmin = 20;
var Xmax = 490;
var Ymin = 20;
var Ymax = 305;
}
onClipEvent (enterFrame) {
KeyDown = false;
this.MainCharMove();
this.myListener();
this._x = this._x + Xspeed;
this._y = this._y + Yspeed;
gravity = gravity * 1.02;
this._y = this._y + gravity;
if (Keydown == false) {
Xspeed = Xspeed * 0.96;
Yspeed = Yspeed * 0.96;
}
if (Xmax < this._x) {
this._x = 490;
Xspeed = 0;
gravity = 0.8;
}
if (this._x < Xmin) {
this._x = 20;
Xspeed = 0;
gravity = 0.8;
}
if (Ymax < this._y) {
this._y = 300;
Yspeed = 0;
gravity = 0.8;
}
if (this._y < Ymin) {
this._y = 20;
Yspeed = 0;
gravity = 0.8;
}
}
onClipEvent (enterFrame) {
if (_global.point <= 0) {
_root.angel.bottle.gotoAndStop(1);
} else if (_global.point == 1) {
_root.angel.bottle.gotoAndStop(2);
} else if (_global.point == 2) {
_root.angel.bottle.gotoAndStop(3);
} else if (_global.point == 3) {
_root.angel.bottle.gotoAndStop(4);
} else if (_global.point == 4) {
_root.angel.bottle.gotoAndStop(5);
} else if (_global.point == 5) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 0)) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 1)) {
_root.angel.bottle.gotoAndStop(5);
}
}
Frame 7
_root.stop();
i = _global.heartpoint - 30;
while (i < (_global.heartpoint + 200)) {
removeMovieClip("_root.heart" + i);
i++;
}
i = _global.devilpoint - 30;
while (i < (_global.devilpoint + 200)) {
removeMovieClip("_root.devilheart" + i);
i++;
}
i = _global.superpoint - 30;
while (i < (_global.superpoint + 200)) {
removeMovieClip("_root.superheart" + i);
i++;
}
_root.game_frame.removeMovieClip();
_root.game_frame2.removeMovieClip();
Frame 8
_global.point = 0;
_global.stage_num = 2;
_global.heartpoint = 0;
_global.devilpoint = 0;
_global.superpoint = 0;
_root.game_frame.duplicateMovieClip("game_frame2", 5000);
_root.game_frame2._x = 250;
_root.game_frame2._y = 190;
_root.game_frame.removeMovieClip();
_root.stop();
Frame 9
_root.stop();
_root.game_frame2.timer.nextFrame();
Instance of Symbol 94 MovieClip "angel" in Frame 9
onClipEvent (load) {
function MainCharMove() {
if (Key.isDown(37)) {
if (-20 < Xspeed) {
Xspeed = Xspeed + (-Xmove);
KeyDown = true;
}
this.gotoAndStop("left");
}
if (Key.isDown(39)) {
if (Xspeed < 20) {
Xspeed = Xspeed + Xmove;
KeyDown = true;
}
this.gotoAndStop("right");
}
if (Key.isDown(38)) {
if (-20 < Yspeed) {
Yspeed = Yspeed + (-Ymove);
KeyDown = true;
}
gravity = 0.8;
}
if (Key.isDown(40)) {
if (Yspeed < 20) {
Yspeed = Yspeed + Ymove;
KeyDown = true;
}
gravity = 0.8;
}
}
var Xmove = 0.2;
var Ymove = 0.2;
var Xspeed = 0;
var Yspeed = 0;
var Xposition = this._x;
var Yposition = this._y;
var gravity = 0.8;
var Xmin = 20;
var Xmax = 490;
var Ymin = 20;
var Ymax = 305;
}
onClipEvent (enterFrame) {
KeyDown = false;
this.MainCharMove();
this.myListener();
this._x = this._x + Xspeed;
this._y = this._y + Yspeed;
gravity = gravity * 1.02;
this._y = this._y + gravity;
if (Keydown == false) {
Xspeed = Xspeed * 0.96;
Yspeed = Yspeed * 0.96;
}
if (Xmax < this._x) {
this._x = 490;
Xspeed = 0;
gravity = 0.8;
}
if (this._x < Xmin) {
this._x = 20;
Xspeed = 0;
gravity = 0.8;
}
if (Ymax < this._y) {
this._y = 300;
Yspeed = 0;
gravity = 0.8;
}
if (this._y < Ymin) {
this._y = 20;
Yspeed = 0;
gravity = 0.8;
}
}
onClipEvent (enterFrame) {
if (_global.point <= 0) {
_root.angel.bottle.gotoAndStop(1);
} else if (_global.point == 1) {
_root.angel.bottle.gotoAndStop(2);
} else if (_global.point == 2) {
_root.angel.bottle.gotoAndStop(3);
} else if (_global.point == 3) {
_root.angel.bottle.gotoAndStop(4);
} else if (_global.point == 4) {
_root.angel.bottle.gotoAndStop(5);
} else if (_global.point == 5) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 0)) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 1)) {
_root.angel.bottle.gotoAndStop(5);
}
}
Frame 10
_root.stop();
i = _global.heartpoint - 30;
while (i < (_global.heartpoint + 200)) {
removeMovieClip("_root.heart" + i);
i++;
}
i = _global.devilpoint - 30;
while (i < (_global.devilpoint + 200)) {
removeMovieClip("_root.devilheart" + i);
i++;
}
i = _global.superpoint - 30;
while (i < (_global.superpoint + 200)) {
removeMovieClip("_root.superheart" + i);
i++;
}
_root.game_frame.removeMovieClip();
_root.game_frame2.removeMovieClip();
Frame 11
_global.point = 0;
_global.stage_num = 3;
_global.heartpoint = 0;
_global.devilpoint = 0;
_global.superpoint = 0;
_root.game_frame.duplicateMovieClip("game_frame2", 5000);
_root.game_frame2._x = 250;
_root.game_frame2._y = 190;
_root.game_frame.removeMovieClip();
_root.stop();
Frame 12
_root.stop();
_root.game_frame2.timer.nextFrame();
Instance of Symbol 94 MovieClip "angel" in Frame 12
onClipEvent (load) {
function MainCharMove() {
if (Key.isDown(37)) {
if (-20 < Xspeed) {
Xspeed = Xspeed + (-Xmove);
KeyDown = true;
}
this.gotoAndStop("left");
}
if (Key.isDown(39)) {
if (Xspeed < 20) {
Xspeed = Xspeed + Xmove;
KeyDown = true;
}
this.gotoAndStop("right");
}
if (Key.isDown(38)) {
if (-20 < Yspeed) {
Yspeed = Yspeed + (-Ymove);
KeyDown = true;
}
gravity = 0.8;
}
if (Key.isDown(40)) {
if (Yspeed < 20) {
Yspeed = Yspeed + Ymove;
KeyDown = true;
}
gravity = 0.8;
}
}
var Xmove = 0.2;
var Ymove = 0.2;
var Xspeed = 0;
var Yspeed = 0;
var Xposition = this._x;
var Yposition = this._y;
var gravity = 0.8;
var Xmin = 20;
var Xmax = 490;
var Ymin = 20;
var Ymax = 305;
}
onClipEvent (enterFrame) {
KeyDown = false;
this.MainCharMove();
this.myListener();
this._x = this._x + Xspeed;
this._y = this._y + Yspeed;
gravity = gravity * 1.02;
this._y = this._y + gravity;
if (Keydown == false) {
Xspeed = Xspeed * 0.96;
Yspeed = Yspeed * 0.96;
}
if (Xmax < this._x) {
this._x = 490;
Xspeed = 0;
gravity = 0.8;
}
if (this._x < Xmin) {
this._x = 20;
Xspeed = 0;
gravity = 0.8;
}
if (Ymax < this._y) {
this._y = 300;
Yspeed = 0;
gravity = 0.8;
}
if (this._y < Ymin) {
this._y = 20;
Yspeed = 0;
gravity = 0.8;
}
}
onClipEvent (enterFrame) {
if (_global.point <= 0) {
_root.angel.bottle.gotoAndStop(1);
} else if (_global.point == 1) {
_root.angel.bottle.gotoAndStop(2);
} else if (_global.point == 2) {
_root.angel.bottle.gotoAndStop(3);
} else if (_global.point == 3) {
_root.angel.bottle.gotoAndStop(4);
} else if (_global.point == 4) {
_root.angel.bottle.gotoAndStop(5);
} else if (_global.point == 5) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 0)) {
_root.angel.bottle.gotoAndStop(6);
} else if ((_global.point >= 6) && ((_global.point % 2) == 1)) {
_root.angel.bottle.gotoAndStop(5);
}
}
Frame 13
_root.stop();
i = _global.heartpoint - 30;
while (i < (_global.heartpoint + 200)) {
removeMovieClip("_root.heart" + i);
i++;
}
i = _global.devilpoint - 30;
while (i < (_global.devilpoint + 200)) {
removeMovieClip("_root.devilheart" + i);
i++;
}
i = _global.superpoint - 30;
while (i < (_global.superpoint + 200)) {
removeMovieClip("_root.superheart" + i);
i++;
}
_root.game_frame.removeMovieClip();
_root.game_frame2.removeMovieClip();
Frame 14
_root.stop();
i = _global.heartpoint - 30;
while (i < (_global.heartpoint + 200)) {
removeMovieClip("_root.heart" + i);
i++;
}
i = _global.devilpoint - 30;
while (i < (_global.devilpoint + 200)) {
removeMovieClip("_root.devilheart" + i);
i++;
}
i = _global.superpoint - 30;
while (i < (_global.superpoint + 200)) {
removeMovieClip("_root.superheart" + i);
i++;
}
_root.game_frame.removeMovieClip();
_root.game_frame2.removeMovieClip();
Symbol 40 Button
on (release) {
stopAllSounds();
_root.gotoAndPlay("manual_force");
}
Symbol 42 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("manual");
}
Symbol 45 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("count1");
}
Symbol 72 MovieClip Frame 6
this.stop();
Symbol 74 MovieClip Frame 6
this.stop();
Symbol 76 MovieClip Frame 6
this.stop();
Symbol 78 MovieClip Frame 6
this.stop();
Symbol 80 MovieClip Frame 6
this.stop();
Symbol 81 MovieClip Frame 1
this.stop();
Symbol 81 MovieClip Frame 2
this.stop();
Symbol 81 MovieClip Frame 3
this.stop();
Symbol 81 MovieClip Frame 4
this.stop();
Symbol 81 MovieClip Frame 5
this.stop();
Symbol 81 MovieClip Frame 6
this.stop();
Symbol 91 MovieClip Frame 1
this.stop();
Symbol 91 MovieClip Frame 2
this.play();
Symbol 91 MovieClip Frame 20
this.gotoAndStop(1);
Symbol 91 MovieClip Frame 21
this.play();
Symbol 91 MovieClip Frame 39
this.gotoAndStop(1);
Symbol 94 MovieClip Frame 1
this.stop();
Symbol 94 MovieClip Frame 2
this.stop();
Symbol 113 MovieClip Frame 145
_root.nextFrame();
Symbol 119 MovieClip Frame 1
this.stop();
Instance of Symbol 93 MovieClip in Symbol 119 MovieClip Frame 1
onClipEvent (enterFrame) {
_parent.gotoAndStop(_global.point);
}
Symbol 119 MovieClip Frame 2
this.stop();
Symbol 119 MovieClip Frame 3
this.stop();
Symbol 119 MovieClip Frame 4
this.stop();
Symbol 119 MovieClip Frame 5
this.stop();
Symbol 119 MovieClip Frame 6
this.stop();
Symbol 119 MovieClip Frame 7
this.stop();
Symbol 119 MovieClip Frame 8
this.stop();
Symbol 119 MovieClip Frame 9
this.stop();
Symbol 119 MovieClip Frame 10
this.stop();
Symbol 119 MovieClip Frame 11
this.stop();
Symbol 119 MovieClip Frame 12
this.stop();
Symbol 119 MovieClip Frame 13
this.stop();
Symbol 119 MovieClip Frame 14
this.stop();
Symbol 119 MovieClip Frame 15
this.stop();
Symbol 119 MovieClip Frame 16
this.stop();
Symbol 119 MovieClip Frame 17
this.stop();
Symbol 119 MovieClip Frame 18
this.stop();
Symbol 119 MovieClip Frame 19
this.stop();
Symbol 119 MovieClip Frame 20
this.stop();
Symbol 119 MovieClip Frame 21
this.stop();
Symbol 119 MovieClip Frame 22
this.stop();
Symbol 119 MovieClip Frame 23
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 119 MovieClip Frame 24
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 119 MovieClip Frame 25
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 123 MovieClip Frame 1
this.stop();
Symbol 123 MovieClip Frame 2
this.play();
Symbol 123 MovieClip Frame 2880
_root.gotoAndStop("badend");
Symbol 123 MovieClip Frame 2881
_root.gotoAndStop("badend");
Symbol 130 MovieClip Frame 1
this.play();
Symbol 130 MovieClip Frame 200
this.stop();
_parent.removeMovieClip();
Symbol 131 MovieClip Frame 1
this.play();
Symbol 131 MovieClip Frame 155
this.stop();
_parent.removeMovieClip();
Symbol 132 MovieClip Frame 1
this.play();
Symbol 132 MovieClip Frame 300
this.stop();
_parent.removeMovieClip();
Symbol 133 MovieClip Frame 1
this.stop();
Symbol 133 MovieClip Frame 2
this.stop();
Instance of Symbol 130 MovieClip in Symbol 133 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
_global.point = _global.point + 1;
_root.angel.face.gotoAndPlay("joy");
_root.HeartSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 133 MovieClip Frame 3
this.stop();
Instance of Symbol 131 MovieClip in Symbol 133 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
_global.point = _global.point + 1;
_root.angel.face.gotoAndPlay("joy");
_root.HeartSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 133 MovieClip Frame 4
this.stop();
Instance of Symbol 132 MovieClip in Symbol 133 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
_global.point = _global.point + 1;
_root.angel.face.gotoAndPlay("joy");
_root.HeartSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 133 MovieClip Frame 5
this.stop();
Symbol 141 MovieClip Frame 1
this.play();
Symbol 141 MovieClip Frame 89
this.stop();
_parent.removeMovieClip();
Symbol 142 MovieClip Frame 1
this.stop();
Symbol 142 MovieClip Frame 2
this.stop();
Instance of Symbol 141 MovieClip in Symbol 142 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
_global.point = _global.point + 3;
_root.angel.face.gotoAndPlay("joy");
_root.SuperSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 150 MovieClip Frame 1
this.play();
Symbol 150 MovieClip Frame 200
this.stop();
_parent.removeMovieClip();
Symbol 151 MovieClip Frame 1
this.play();
Symbol 151 MovieClip Frame 155
this.stop();
_parent.removeMovieClip();
Symbol 152 MovieClip Frame 1
this.play();
Symbol 152 MovieClip Frame 300
this.stop();
_parent.removeMovieClip();
Symbol 153 MovieClip Frame 1
this.stop();
Symbol 153 MovieClip Frame 2
this.stop();
Instance of Symbol 150 MovieClip in Symbol 153 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
if (_global.point >= 2) {
_global.point = _global.point - 2;
}
_root.angel.face.gotoAndPlay("sad");
_root.DevilSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 153 MovieClip Frame 3
this.stop();
Instance of Symbol 151 MovieClip in Symbol 153 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
if (_global.point >= 2) {
_global.point = _global.point - 2;
}
_root.angel.face.gotoAndPlay("sad");
_root.DevilSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 153 MovieClip Frame 4
this.stop();
Instance of Symbol 152 MovieClip in Symbol 153 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hittest(_root.angel.hitarea)) {
if (_global.point >= 2) {
_global.point = _global.point - 2;
}
_root.angel.face.gotoAndPlay("sad");
_root.DevilSEObj.start();
_parent.removeMovieClip();
}
}
Symbol 153 MovieClip Frame 5
this.stop();
Symbol 153 MovieClip Frame 6
this.stop();
Symbol 153 MovieClip Frame 7
this.stop();
Symbol 153 MovieClip Frame 8
this.stop();
Symbol 156 MovieClip Frame 40
sw = stage.width;
sh = stage.height - 50;
pattern = Math.floor(Math.random() * 4) + 2;
num++;
_root.heart.duplicateMovieClip("heart" + num, num + 500);
_root["heart" + num]._y = (Math.random() * 250) + 50;
_root["heart" + num].gotoAndstop("heart" + pattern);
_global.heartpoint = _global.heartpoint + 1;
this.gotoAndPlay(1);
Symbol 158 MovieClip Frame 600
sw = stage.width;
sh = stage.height - 50;
num++;
_root.superheart.duplicateMovieClip("superheart" + num, num + 700);
_root["superheart" + num]._y = (Math.random() * 250) + 50;
_root["superheart" + num].gotoAndstop("superheart2");
this.gotoAndPlay(1);
Symbol 160 MovieClip Frame 80
sw = stage.width;
sh = stage.height - 50;
pattern = Math.floor(Math.random() * 6) + 2;
num++;
_root.devilheart.duplicateMovieClip("devilheart" + num, num + 600);
_root["devilheart" + num]._y = (Math.random() * 250) + 50;
_root["devilheart" + num].gotoAndstop("devilheart" + pattern);
this.gotoAndPlay(1);
Symbol 188 MovieClip Frame 1
this.stop();
Symbol 188 MovieClip Frame 2
this.play();
Symbol 188 MovieClip Frame 100
this.stop();
Symbol 196 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("count2");
}
Symbol 198 MovieClip Frame 1
stopAllSounds();
Instance of Symbol 94 MovieClip "goodend1_angel" in Symbol 198 MovieClip Frame 1
onClipEvent (load) {
this.bottle.gotoAndStop(6);
}
Instance of Symbol 188 MovieClip "angel" in Symbol 198 MovieClip Frame 105
onClipEvent (load) {
this.nextFrame();
}
Symbol 198 MovieClip Frame 230
this.stop();
Symbol 208 MovieClip Frame 1
this.stop();
Instance of Symbol 93 MovieClip in Symbol 208 MovieClip Frame 1
onClipEvent (enterFrame) {
_parent.gotoAndStop(_global.point);
}
Symbol 208 MovieClip Frame 2
this.stop();
Symbol 208 MovieClip Frame 3
this.stop();
Symbol 208 MovieClip Frame 4
this.stop();
Symbol 208 MovieClip Frame 5
this.stop();
Symbol 208 MovieClip Frame 6
this.stop();
Symbol 208 MovieClip Frame 7
this.stop();
Symbol 208 MovieClip Frame 8
this.stop();
Symbol 208 MovieClip Frame 9
this.stop();
Symbol 208 MovieClip Frame 10
this.stop();
Symbol 208 MovieClip Frame 11
this.stop();
Symbol 208 MovieClip Frame 12
this.stop();
Symbol 208 MovieClip Frame 13
this.stop();
Symbol 208 MovieClip Frame 14
this.stop();
Symbol 208 MovieClip Frame 15
this.stop();
Symbol 208 MovieClip Frame 16
this.stop();
Symbol 208 MovieClip Frame 17
this.stop();
Symbol 208 MovieClip Frame 18
this.stop();
Symbol 208 MovieClip Frame 19
this.stop();
Symbol 208 MovieClip Frame 20
this.stop();
Symbol 208 MovieClip Frame 21
this.stop();
Symbol 208 MovieClip Frame 22
this.stop();
Symbol 208 MovieClip Frame 23
this.stop();
Symbol 208 MovieClip Frame 24
this.stop();
Symbol 208 MovieClip Frame 25
this.stop();
Symbol 208 MovieClip Frame 26
this.stop();
Symbol 208 MovieClip Frame 27
this.stop();
Symbol 208 MovieClip Frame 28
this.stop();
Symbol 208 MovieClip Frame 29
this.stop();
Symbol 208 MovieClip Frame 30
this.stop();
Symbol 208 MovieClip Frame 31
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 208 MovieClip Frame 32
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 208 MovieClip Frame 33
this.stop();
_root.gotoAndStop("goodend" + _global.stage_num);
Symbol 214 MovieClip Frame 1
this.stop();
Symbol 214 MovieClip Frame 2
this.play();
Symbol 214 MovieClip Frame 100
this.stop();
Symbol 219 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("count3");
}
Symbol 220 MovieClip Frame 1
stopAllSounds();
Instance of Symbol 94 MovieClip "goodend1_angel" in Symbol 220 MovieClip Frame 1
onClipEvent (load) {
this.bottle.gotoAndStop(6);
}
Instance of Symbol 214 MovieClip "angel" in Symbol 220 MovieClip Frame 105
onClipEvent (load) {
this.nextFrame();
}
Symbol 220 MovieClip Frame 230
this.stop();
Symbol 230 MovieClip Frame 1
this.stop();
Instance of Symbol 93 MovieClip in Symbol 230 MovieClip Frame 1
onClipEvent (enterFrame) {
_parent.gotoAndStop(_global.point);
}
Symbol 230 MovieClip Frame 2
this.stop();
Symbol 230 MovieClip Frame 3
this.stop();
Symbol 230 MovieClip Frame 4
this.stop();
Symbol 230 MovieClip Frame 5
this.stop();
Symbol 230 MovieClip Frame 6
this.stop();
Symbol 230 MovieClip Frame 7
this.stop();
Symbol 230 MovieClip Frame 8
this.stop();
Symbol 230 MovieClip Frame 9
this.stop();
Symbol 230 MovieClip Frame 10
this.stop();
Symbol 230 MovieClip Frame 11
this.stop();
Symbol 230 MovieClip Frame 12
this.stop();
Symbol 230 MovieClip Frame 13
this.stop();
Symbol 230 MovieClip Frame 14
this.stop();
Symbol 230 MovieClip Frame 15
this.stop();
Symbol 230 MovieClip Frame 16
this.stop();
Symbol 230 MovieClip Frame 17
this.stop();
Symbol 230 MovieClip Frame 18
this.stop();
Symbol 230 MovieClip Frame 19
this.stop();
Symbol 230 MovieClip Frame 20
this.stop();
Symbol 230 MovieClip Frame 21
this.stop();
Symbol 230 MovieClip Frame 22
this.stop();
Symbol 230 MovieClip Frame 23
this.stop();
Symbol 230 MovieClip Frame 24
this.stop();
Symbol 230 MovieClip Frame 25
this.stop();
Symbol 230 MovieClip Frame 26
this.stop();
Symbol 230 MovieClip Frame 27
this.stop();
Symbol 230 MovieClip Frame 28
this.stop();
Symbol 230 MovieClip Frame 29
this.stop();
Symbol 230 MovieClip Frame 30
this.stop();
Symbol 230 MovieClip Frame 31
this.stop();
Symbol 230 MovieClip Frame 32
this.stop();
Symbol 230 MovieClip Frame 33
this.stop();
Symbol 230 MovieClip Frame 34
this.stop();
Symbol 230 MovieClip Frame 35
this.stop();
Symbol 230 MovieClip Frame 36
this.stop();
Symbol 230 MovieClip Frame 37
this.stop();
Symbol 230 MovieClip Frame 38
this.stop();
Symbol 230 MovieClip Frame 39
this.stop();
_root.gotoAndStop("ending");
Symbol 230 MovieClip Frame 40
this.stop();
_root.gotoAndStop("ending");
Symbol 230 MovieClip Frame 41
this.stop();
_root.gotoAndStop("ending");
Symbol 251 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("count" + _global.stage_num);
}
Symbol 253 MovieClip Frame 1
stopAllSounds();
Symbol 253 MovieClip Frame 45
this.stop();
Symbol 255 MovieClip Frame 1
this.stop();
Symbol 255 MovieClip Frame 2
this.play();
Symbol 255 MovieClip Frame 170
this.stop();
Symbol 276 MovieClip Frame 1
this.stop();
Symbol 276 MovieClip Frame 2
this.play();
Symbol 276 MovieClip Frame 5
this.stop();
Symbol 276 MovieClip Frame 6
this.play();
Symbol 276 MovieClip Frame 115
this.gotoAndPlay("st3");
Symbol 276 MovieClip Frame 116
this.play();
Symbol 276 MovieClip Frame 174
this.gotoAndPlay("st4");
Symbol 279 MovieClip Frame 1
this.play();
Symbol 279 MovieClip Frame 20
this.stop();
Symbol 283 MovieClip Frame 1
this.play();
Symbol 283 MovieClip Frame 20
this.stop();
Symbol 286 MovieClip Frame 1
this.play();
Symbol 286 MovieClip Frame 20
this.stop();
Symbol 289 MovieClip Frame 1
this.play();
Symbol 289 MovieClip Frame 20
this.stop();
Symbol 311 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("opening");
}
Symbol 312 MovieClip Frame 1
stopAllSounds();
Instance of Symbol 255 MovieClip "angel" in Symbol 312 MovieClip Frame 1
onClipEvent (load) {
this.nextFrame();
}
Symbol 312 MovieClip Frame 136
EndBGM1Obj = new Sound();
EndBGM1Obj.attachSound("EndBGM1");
EndBGM2Obj = new Sound();
EndBGM2Obj.attachSound("EndBGM2");
EndBGM1Obj.start(0, 100);
EndBGM1Obj.setVolume(80);
Instance of Symbol 276 MovieClip "last_angel" in Symbol 312 MovieClip Frame 361
onClipEvent (load) {
this.gotoAndPlay("st2");
}
Instance of Symbol 276 MovieClip "last_angel" in Symbol 312 MovieClip Frame 405
onClipEvent (load) {
this.gotoAndPlay("st3");
}
Symbol 312 MovieClip Frame 580
EndBGM1Obj.setVolume(70);
Symbol 312 MovieClip Frame 585
EndBGM1Obj.setVolume(60);
Symbol 312 MovieClip Frame 590
EndBGM1Obj.setVolume(50);
Symbol 312 MovieClip Frame 595
EndBGM1Obj.setVolume(40);
Symbol 312 MovieClip Frame 600
EndBGM1Obj.setVolume(30);
Symbol 312 MovieClip Frame 605
EndBGM1Obj.setVolume(20);
Instance of Symbol 276 MovieClip "last_angel" in Symbol 312 MovieClip Frame 608
onClipEvent (load) {
this.gotoAndPlay("st4");
}
Symbol 312 MovieClip Frame 610
EndBGM1Obj.setVolume(10);
Symbol 312 MovieClip Frame 615
EndBGM1Obj.setVolume(0);
Symbol 312 MovieClip Frame 620
EndBGM1Obj.Stop("EndBGM1");
EndBGM2Obj.Start(0, 9999);
EndBGM2Obj.setVolume(100);
Symbol 312 MovieClip Frame 638
stop();