Frame 1
stop();
Instance of Symbol 14 MovieClip in Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 2);
}
Frame 2
stop();
_global.ii = 0;
_global.matari = 0;
_global.uwan = 0;
_global.combo = 0;
_global.Maxcombo = 0;
_global.life = 7;
_global.score = 0;
Instance of Symbol 61 MovieClip "left_hit" in Frame 3
onClipEvent (keyDown) {
if (Key.isDown(37)) {
_parent.left_step.play();
}
}
Instance of Symbol 61 MovieClip "up_hit" in Frame 3
onClipEvent (keyDown) {
if (Key.isDown(38)) {
_parent.up_step.play();
}
}
Instance of Symbol 61 MovieClip "down_hit" in Frame 3
onClipEvent (keyDown) {
if (Key.isDown(40)) {
_parent.down_step.play();
}
}
Instance of Symbol 61 MovieClip "right_hit" in Frame 3
onClipEvent (keyDown) {
if (Key.isDown(39)) {
_parent.right_step.play();
}
}
Instance of Symbol 61 MovieClip "space_hit" in Frame 3
onClipEvent (keyDown) {
if (Key.isDown(32)) {
_parent.space_step.play();
}
}
Instance of Symbol 104 MovieClip in Frame 3
onClipEvent (load) {
function make_left() {
Cnt++;
if (Cnt >= 500) {
Cnt = 1;
}
var newArrowName = ("leftMC" + Cnt);
_parent.leftMC.duplicateMovieClip(newArrowName, Cnt);
_parent[newArrowName].onEnterFrame = this.move1;
_parent[newArrowName]._x = 40;
_parent[newArrowName]._y = 370;
}
function make_right() {
Cnt++;
if (Cnt >= 500) {
Cnt = 1;
}
var newArrowName = ("rightMC" + Cnt);
_parent.rightMC.duplicateMovieClip(newArrowName, Cnt);
_parent[newArrowName].onEnterFrame = this.move1;
_parent[newArrowName]._x = 220;
_parent[newArrowName]._y = 370;
}
function make_up() {
Cnt++;
if (Cnt >= 500) {
Cnt = 1;
}
var newArrowName = ("upMC" + Cnt);
_parent.upMC.duplicateMovieClip(newArrowName, Cnt);
_parent[newArrowName].onEnterFrame = this.move1;
_parent[newArrowName]._x = 160;
_parent[newArrowName]._y = 370;
}
function make_down() {
Cnt++;
if (Cnt >= 500) {
Cnt = 1;
}
var newArrowName = ("downMC" + Cnt);
_parent.downMC.duplicateMovieClip(newArrowName, Cnt);
_parent[newArrowName].onEnterFrame = this.move1;
_parent[newArrowName]._x = 100;
_parent[newArrowName]._y = 370;
}
function make_space() {
Cnt++;
if (Cnt >= 500) {
Cnt = 1;
}
var newArrowName = ("spaceMC" + Cnt);
_parent.spaceMC.duplicateMovieClip(newArrowName, Cnt);
_parent[newArrowName].onEnterFrame = this.move1;
_parent[newArrowName]._x = 260;
_parent[newArrowName]._y = 370;
}
function move1() {
this._y = this._y - 2;
if (this._y < -10) {
_parent.effect.gotoAndPlay(230);
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
this.removeMovieClip();
}
}
left_timeline = [390, 756, 894, 935, 974, 995, 1017, 1039, 1061, 1083, 1106, 1206, 1228, 1454, 1569, 1657, 1777, 1823, 1845, 1867, 1890, 1913, 1935, 1957, 1979, 2001, 2024, 2047, 2069, 2091, 2113, 2136, 2159, 2181, 2204, 2227, 2250, 2272, 2294, 2317, 2340, 2363, 2386, 2408, 2431, 2454, 2477, 2500, 2522, 2544, 2656, 2679, 2701, 2817, 2908, 3021, 3043, 3065, 3179, 3203, 3226, 3249, 3317, 3386, 3500, 3523, 3615, 3683, 3751, 3796, 3842, 3968, 4139, 4162, 4184, 4207, 4230, 4299, 4322, 4583, 4686, 4720, 4777, 4844, 4874, 4958, 4981, 5026, 5056, 5183, 5208, 5238, 5380, 5423, 5559, 5651, 5706, 5775, 5900, 5968, 6071, 6128, 6151];
right_timeline = [206, 572, 917, 1050, 1410, 1432, 1501, 1523, 1546, 1569, 1592, 1625, 1724, 1754, 1823, 1979, 2159, 2340, 2477, 2500, 2588, 2725, 2840, 2863, 2885, 2953, 3077, 3203, 3226, 3249, 3340, 3432, 3478, 3523, 3569, 3728, 3751, 3796, 3865, 3887, 3933, 4002, 4242, 4288, 4435, 4458, 4481, 4503, 4526, 4549, 4572, 4674, 4731, 4833, 4859, 4970, 5041, 5160, 5368, 5524, 5547, 5570, 5593, 5616, 5639, 5741, 5809, 5934, 6002, 6071, 6139];
up_timeline = [526, 917, 1072, 1251, 1274, 1309, 1331, 1354, 1377, 1399, 1421, 1443, 1465, 1523, 1702, 1754, 1799, 1935, 2113, 2294, 2522, 2611, 2713, 2771, 2908, 2976, 3087, 3133, 3238, 3363, 3409, 3432, 3500, 3546, 3569, 3592, 3705, 3773, 3842, 3887, 3910, 3945, 3991, 4253, 4355, 4413, 4605, 4708, 4731, 4799, 4822, 4981, 5083, 5137, 5195, 5345, 5408, 5536, 5628, 5729, 5752, 5798, 5821, 5911, 5946, 5991, 6048, 6105];
down_timeline = [295, 477, 664, 848, 894, 1094, 1139, 1161, 1184, 1206, 1228, 1251, 1546, 1592, 1680, 1777, 1799, 2001, 2181, 2363, 2454, 2544, 2634, 2725, 2794, 2897, 2998, 3087, 3156, 3215, 3294, 3386, 3409, 3478, 3546, 3592, 3615, 3660, 3773, 3865, 3910, 3956, 3979, 4116, 4265, 4366, 4594, 4663, 4686, 4788, 4811, 5004, 5095, 5149, 5172, 5223, 5323, 5357, 5605, 5718, 5764, 5786, 5888, 5923, 5957, 5979, 6060, 6093, 6162];
space_timeline = [935, 1139, 1274, 1501, 1625, 1845, 1991, 2024, 2171, 2204, 2352, 2386, 2512, 2533, 2566, 2748, 2931, 3110, 3272, 3455, 3637, 3819, 3933, 3968, 4025, 4276, 4617, 4754, 4895, 4936, 5116, 5264, 5300, 5393, 5478, 5582, 5661, 5843, 6025, 6186];
Cnt = 1;
v = 0;
w = 0;
x = 0;
y = 0;
z = 0;
_global.all = 15 * ((((left_timeline.length + right_timeline.length) + up_timeline.length) + down_timeline.length) + space_timeline.length);
}
onClipEvent (enterFrame) {
if (_parent._currentframe == (left_timeline[v] - 150)) {
this.make_left();
v++;
}
if (_parent._currentframe == (right_timeline[w] - 150)) {
this.make_right();
w++;
}
if (_parent._currentframe == (up_timeline[x] - 150)) {
this.make_up();
x++;
}
if (_parent._currentframe == (down_timeline[y] - 150)) {
this.make_down();
y++;
}
if (_parent._currentframe == (space_timeline[z] - 150)) {
this.make_space();
z++;
}
}
Instance of Symbol 134 MovieClip in Frame 3
onClipEvent (enterFrame) {
this.gotoAndStop(_global.life + 1);
}
Frame 6376
_global.music_lock = 1;
Instance of Symbol 185 MovieClip in Frame 6376
onClipEvent (load) {
_global.score = (((_global.ii * 10) + (_global.matari * 8)) - (_global.uwan * 3)) + (_global.Maxcombo * 5);
if (_global.score < 0) {
_global.score = 0;
}
if (_global.score >= (_global.all * 0.97)) {
_global.select_lock++;
_parent.rank.gotoAndStop(8);
} else if (_global.score >= (_global.all * 0.95)) {
_parent.rank.gotoAndStop(7);
} else if (_global.score >= (_global.all * 0.9)) {
_parent.rank.gotoAndStop(6);
} else if (_global.score >= (_global.all * 0.7)) {
_parent.rank.gotoAndStop(5);
} else if (_global.score >= (_global.all * 0.5)) {
_parent.rank.gotoAndStop(4);
} else if (_global.score >= (_global.all * 0.4)) {
_parent.rank.gotoAndStop(3);
} else if (_global.score >= (_global.all * 0.3)) {
_parent.rank.gotoAndStop(2);
}
}
Frame 6377
stop();
Frame 6378
stop();
_global.music_lock = 2;
Symbol 14 MovieClip Frame 1
stop();
Instance of Symbol 10 MovieClip in Symbol 14 MovieClip Frame 1
onClipEvent (load) {
_root.stop();
totalSize = _root.getBytesTotal() / 2;
}
onClipEvent (enterFrame) {
rate = _root.getBytesLoaded() / totalSize;
_root.percent = Math.floor((100 * _root.getBytesLoaded()) / _root.getBytesTotal());
_rotation = (-180 * rate);
if (rate >= 1) {
_parent.gotoAndStop(2);
}
}
Symbol 14 MovieClip Frame 2
stop();
Instance of Symbol 13 MovieClip in Symbol 14 MovieClip Frame 2
onClipEvent (load) {
_root.stop();
totalSize = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
rate = _root.getBytesLoaded() / totalSize;
_root.percent = Math.floor((100 * _root.getBytesLoaded()) / _root.getBytesTotal());
this._rotation = -360 * rate;
if (rate >= 1) {
_root.play();
}
}
Symbol 25 Button
on (release) {
_global.soundObject2.stop();
play();
}
Symbol 30 Button
on (release) {
getURL ("http://www2u.biglobe.ne.jp/~cranky/", "_blank");
}
Symbol 33 Button
on (release) {
getURL ("http://www.geocities.jp/isoroku_25_56/", "_blank");
}
Symbol 37 Button
on (release) {
getURL ("http://www.geocities.co.jp/SiliconValley/4358/", "_blank");
}
Symbol 48 MovieClip Frame 95
stop();
Symbol 53 MovieClip Frame 1
stop();
Symbol 59 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 110
gotoAndStop (1);
Symbol 71 MovieClip Frame 220
gotoAndStop (1);
Symbol 71 MovieClip Frame 330
gotoAndStop (1);
Symbol 83 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip "uwan_left_1" in Symbol 83 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(38)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_1" in Symbol 83 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(38)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_2" in Symbol 83 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(38)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "uwan_left_2" in Symbol 83 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(38)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 61 MovieClip "ii_left" in Symbol 83 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(38)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.ii++;
_global.combo++;
if (_global.combo > _global.Maxcombo) {
_global.Maxcombo = _global.combo;
}
_global.life++;
if (_global.life >= 25) {
_global.life = 25;
}
_parent._parent.effect.gotoAndPlay(10);
_parent.gotoAndPlay(5);
}
}
}
Symbol 83 MovieClip Frame 25
this.removeMovieClip();
Symbol 88 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip "uwan_left_1" in Symbol 88 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(40)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_1" in Symbol 88 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(40)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_2" in Symbol 88 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(40)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "uwan_left_2" in Symbol 88 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(40)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 61 MovieClip "ii_left" in Symbol 88 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(40)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.ii++;
_global.combo++;
if (_global.combo > _global.Maxcombo) {
_global.Maxcombo = _global.combo;
}
_global.life++;
if (_global.life >= 25) {
_global.life = 25;
}
_parent._parent.effect.gotoAndPlay(10);
_parent.gotoAndPlay(5);
}
}
}
Symbol 88 MovieClip Frame 25
this.removeMovieClip();
Symbol 93 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip "uwan_left_1" in Symbol 93 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_1" in Symbol 93 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_2" in Symbol 93 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "uwan_left_2" in Symbol 93 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 61 MovieClip "ii_left" in Symbol 93 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.ii++;
_global.combo++;
if (_global.combo > _global.Maxcombo) {
_global.Maxcombo = _global.combo;
}
_global.life++;
if (_global.life >= 25) {
_global.life = 25;
}
_parent._parent.effect.gotoAndPlay(10);
_parent.gotoAndPlay(5);
}
}
}
Symbol 93 MovieClip Frame 25
this.removeMovieClip();
Symbol 97 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip "uwan_left_1" in Symbol 97 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(32)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_1" in Symbol 97 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(32)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_2" in Symbol 97 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(32)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "uwan_left_2" in Symbol 97 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(32)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 61 MovieClip "ii_left" in Symbol 97 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(32)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.ii++;
_global.combo++;
if (_global.combo > _global.Maxcombo) {
_global.Maxcombo = _global.combo;
}
_global.life++;
if (_global.life >= 25) {
_global.life = 25;
}
_parent._parent.effect.gotoAndPlay(10);
_parent.gotoAndPlay(5);
}
}
}
Symbol 97 MovieClip Frame 25
this.removeMovieClip();
Symbol 101 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip "uwan_left_1" in Symbol 101 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(37)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_1" in Symbol 101 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(37)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "matari_left_2" in Symbol 101 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(37)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 78 MovieClip "uwan_left_2" in Symbol 101 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(37)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.uwan++;
_global.life--;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 61 MovieClip "ii_left" in Symbol 101 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(37)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.ii++;
_global.combo++;
if (_global.combo > _global.Maxcombo) {
_global.Maxcombo = _global.combo;
}
_global.life++;
if (_global.life >= 25) {
_global.life = 25;
}
_parent._parent.effect.gotoAndPlay(10);
_parent.gotoAndPlay(5);
}
}
}
Symbol 101 MovieClip Frame 25
this.removeMovieClip();
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 2
stop();
Symbol 134 MovieClip Frame 3
stop();
Symbol 134 MovieClip Frame 4
stop();
Symbol 134 MovieClip Frame 5
stop();
Symbol 134 MovieClip Frame 6
stop();
Symbol 134 MovieClip Frame 7
stop();
Symbol 134 MovieClip Frame 8
stop();
Symbol 134 MovieClip Frame 9
stop();
Symbol 134 MovieClip Frame 10
stop();
Symbol 134 MovieClip Frame 11
stop();
Symbol 134 MovieClip Frame 12
stop();
Symbol 134 MovieClip Frame 13
stop();
Symbol 134 MovieClip Frame 14
stop();
Symbol 134 MovieClip Frame 15
stop();
Symbol 134 MovieClip Frame 16
stop();
Symbol 134 MovieClip Frame 17
stop();
Symbol 134 MovieClip Frame 18
stop();
Symbol 134 MovieClip Frame 19
stop();
Symbol 134 MovieClip Frame 20
stop();
Symbol 134 MovieClip Frame 21
stop();
Symbol 134 MovieClip Frame 22
stop();
Symbol 134 MovieClip Frame 23
stop();
Symbol 134 MovieClip Frame 24
stop();
Symbol 134 MovieClip Frame 25
stop();
Symbol 134 MovieClip Frame 26
stop();
Symbol 148 MovieClip Frame 72
this.stop();
Symbol 182 MovieClip Frame 1
stop();
Symbol 182 MovieClip Frame 2
stop();
Symbol 182 MovieClip Frame 3
stop();
Symbol 182 MovieClip Frame 4
stop();
Symbol 182 MovieClip Frame 5
stop();
Symbol 182 MovieClip Frame 6
stop();
Symbol 182 MovieClip Frame 7
stop();
Symbol 182 MovieClip Frame 8
stop();
Symbol 189 Button
on (release) {
getURL ("http://jbbs.shitaraba.com/bbs/read.cgi/computer/12508/1080545371/", "_blank");
}
Symbol 196 Button
on (release) {
_global.lock = 1;
unloadMovieNum (1);
_root.gotoAndStop("start", 1);
}
Symbol 199 Button
on (release) {
_global.lock = 1;
unloadMovieNum (1);
_root.gotoAndStop("start", 1);
}