Frame 1
stop();
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 2);
}
Frame 2
stop();
this.loadVariables("dos.txt");
_quality = "MEDIUM";
Stage.showMenu = false;
updateAfterEvent();
_global.ii = 0;
_global.matari = 0;
_global.uwan = 0;
_global.combo = 0;
_global.Maxcombo = 0;
_global.life = 25;
_global.score = 0;
_global.SpeedY = 520;
_global.SpeedUp = 3;
_global.out = -20;
_global.Reverse = false;
Instance of Symbol 81 MovieClip "left_step" in Frame 4
onClipEvent (load) {
if (_global.Reverse == true) {
this._y = 300;
_root.left_hit._y = 300;
}
}
Instance of Symbol 81 MovieClip "right_step" in Frame 4
onClipEvent (load) {
if (_global.Reverse == true) {
this._y = 300;
_root.right_hit._y = 300;
}
}
Instance of Symbol 81 MovieClip "up_step" in Frame 4
onClipEvent (load) {
if (_global.Reverse == true) {
this._y = 300;
_root.up_hit._y = 300;
}
}
Instance of Symbol 81 MovieClip "down_step" in Frame 4
onClipEvent (load) {
if (_global.Reverse == true) {
this._y = 300;
_root.down_hit._y = 300;
}
}
Instance of Symbol 90 MovieClip "space_step" in Frame 4
onClipEvent (load) {
if (_global.Reverse == true) {
this._y = 300;
_root.space_hit._y = 300;
}
}
Instance of Symbol 92 MovieClip "left_hit" in Frame 4
onClipEvent (keyDown) {
if (Key.isDown(37)) {
_parent.left_step.play();
}
}
Instance of Symbol 92 MovieClip "up_hit" in Frame 4
onClipEvent (keyDown) {
if (Key.isDown(38)) {
_parent.up_step.play();
}
}
Instance of Symbol 92 MovieClip "down_hit" in Frame 4
onClipEvent (keyDown) {
if (Key.isDown(40)) {
_parent.down_step.play();
}
}
Instance of Symbol 92 MovieClip "right_hit" in Frame 4
onClipEvent (keyDown) {
if (Key.isDown(39)) {
_parent.right_step.play();
}
}
Instance of Symbol 92 MovieClip "space_hit" in Frame 4
onClipEvent (keyDown) {
if (Key.isDown(16)) {
_parent.space_step.play();
} else if (Key.isDown(32)) {
_parent.space_step.play();
}
}
Instance of Symbol 128 MovieClip "upMC" in Frame 4
onClipEvent (enterFrame) {
if (_global.life < 0) {
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "downMC" in Frame 4
onClipEvent (enterFrame) {
if (_global.life < 0) {
this.removeMovieClip();
}
}
Instance of Symbol 132 MovieClip "rightMC" in Frame 4
onClipEvent (enterFrame) {
if (_global.life < 0) {
this.removeMovieClip();
}
}
Instance of Symbol 136 MovieClip "spaceMC" in Frame 4
onClipEvent (enterFrame) {
if (_global.life < 0) {
this.removeMovieClip();
}
}
Instance of Symbol 138 MovieClip "leftMC" in Frame 4
onClipEvent (enterFrame) {
if (_global.life < 0) {
this.removeMovieClip();
}
}
Instance of Symbol 140 MovieClip in Frame 4
onClipEvent (load) {
function move1() {
this._y = this._y - _global.SpeedUp;
if (_global.Reverse == false) {
if (this._y < _global.out) {
_parent.effect.gotoAndPlay(230);
_global.uwan++;
_global.life = _global.life - 5;
if (_global.life < 0) {
_root.gotoAndPlay("gameover", 1);
}
_global.combo = 0;
this.removeMovieClip();
}
} else if (_global.Reverse == true) {
if (this._y > _global.out) {
_parent.effect.gotoAndPlay(230);
_global.uwan++;
_global.life = _global.life - 5;
if (_global.life < 0) {
_root.gotoAndPlay("gameover", 1);
}
_global.combo = 0;
this.removeMovieClip();
}
}
}
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 = _global.SpeedY;
}
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 = _global.SpeedY;
}
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 = _global.SpeedY;
}
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 = _global.SpeedY;
}
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 = _global.SpeedY;
}
left_timeline = _root.left_data.split(",");
right_timeline = _root.right_data.split(",");
up_timeline = _root.up_data.split(",");
down_timeline = _root.down_data.split(",");
space_timeline = _root.space_data.split(",");
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 155 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_global.life + 1);
}
Frame 8042
_global.music_lock = 1;
Instance of Symbol 206 MovieClip in Frame 8042
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.9)) {
_parent.rank.gotoAndStop(7);
} else if (_global.score >= (_global.all * 0.8)) {
_parent.rank.gotoAndStop(6);
} else if (_global.score >= (_global.all * 0.75)) {
_parent.rank.gotoAndStop(5);
} else if (_global.score >= (_global.all * 0.7)) {
_parent.rank.gotoAndStop(4);
} else if (_global.score >= (_global.all * 0.6)) {
_parent.rank.gotoAndStop(3);
} else if (_global.score >= (_global.all * 0.5)) {
_parent.rank.gotoAndStop(2);
}
if ((_global.SpeedUp == 5) || (_global.SpeedUp == -5)) {
_root.speed = "\u00D7\uFF12";
} else if ((_global.SpeedUp == 4) || (_global.SpeedUp == -4)) {
_root.speed = "\u00D71.5";
} else if ((_global.SpeedUp == 3) || (_global.SpeedUp == -3)) {
_root.speed = "\u00D7\uFF11";
}
if (_global.Reverse == true) {
_root.reverse_r = "on";
} else if (_global.Reverse == false) {
_root.reverse_r = "off";
}
}
Frame 8043
stop();
Frame 8044
stop();
_global.music_lock = 2;
Symbol 13 MovieClip Frame 1
stop();
Instance of Symbol 9 MovieClip in Symbol 13 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 13 MovieClip Frame 2
stop();
Instance of Symbol 12 MovieClip in Symbol 13 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 24 Button
on (release) {
_global.soundObject2.stop();
gotoAndPlay (4);
}
Symbol 28 Button
on (release) {
getURL ("http://eucaly.net/~iso50/index.html", "_blank");
}
Symbol 32 Button
on (release) {
getURL ("http://www.geocities.co.jp/SiliconValley/4358/", "_blank");
}
Symbol 35 MovieClip Frame 72
stop();
Symbol 39 Button
on (release) {
getURL ("http://www107.sakura.ne.jp/~onoken/", "_blank");
}
Symbol 46 Button
on (release) {
gotoAndStop (3);
}
Symbol 50 Button
on (release) {
gotoAndPlay (4);
}
Symbol 62 Button
on (release) {
nextFrame();
}
Symbol 64 Button
on (release) {
gotoAndStop (1);
}
Symbol 65 MovieClip Frame 1
stop();
if (_global.Reverse == true) {
_global.Reverse = false;
}
Symbol 65 MovieClip Frame 2
stop();
if (_global.Reverse == false) {
_global.Reverse = true;
}
Symbol 68 Button
on (release) {
gotoAndPlay (3);
}
Symbol 70 Button
on (release) {
gotoAndPlay (5);
}
Symbol 72 Button
on (release) {
gotoAndStop (1);
}
Symbol 73 MovieClip Frame 1
if (_global.Reverse == false) {
_global.SpeedY = 520;
_global.SpeedUp = 3;
_global.out = -20;
} else if (_global.Reverse == true) {
_global.SpeedY = -150;
_global.SpeedUp = -3;
_global.out = 390;
}
Symbol 73 MovieClip Frame 2
gotoAndPlay (1);
Symbol 73 MovieClip Frame 3
if (_global.Reverse == false) {
_global.SpeedY = 670;
_global.SpeedUp = 4;
_global.out = -30;
} else if (_global.Reverse == true) {
_global.SpeedY = -300;
_global.SpeedUp = -4;
_global.out = 410;
}
Symbol 73 MovieClip Frame 4
gotoAndPlay (3);
Symbol 73 MovieClip Frame 5
if (_global.Reverse == false) {
_global.SpeedY = 820;
_global.SpeedUp = 5;
_global.out = -40;
} else if (_global.Reverse == true) {
_global.SpeedY = -450;
_global.SpeedUp = -5;
_global.out = 430;
}
Symbol 73 MovieClip Frame 6
gotoAndPlay (5);
Symbol 81 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 4
gotoAndStop(_currentframe - 3);
Symbol 110 MovieClip Frame 1
stop();
Symbol 110 MovieClip Frame 110
gotoAndStop (1);
Symbol 110 MovieClip Frame 220
gotoAndStop (1);
Symbol 110 MovieClip Frame 330
gotoAndStop (1);
Symbol 110 MovieClip Frame 420
gotoAndStop (1);
Instance of Symbol 122 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x + 1);
if (_x > 74) {
_x = -125;
}
}
Instance of Symbol 124 MovieClip in Symbol 126 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x + 1);
if (_x > 74) {
_x = -125;
}
}
Symbol 128 MovieClip Frame 1
stop();
Instance of Symbol 117 MovieClip "uwan_left_1" in Symbol 128 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.up)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_1" in Symbol 128 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.up)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_2" in Symbol 128 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.up)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "uwan_left_2" in Symbol 128 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.up)) {
if (this.hittest(_parent._parent.up_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 92 MovieClip "ii_left" in Symbol 128 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.up)) {
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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
}
}
Symbol 128 MovieClip Frame 22
this.removeMovieClip();
Symbol 130 MovieClip Frame 1
stop();
Instance of Symbol 117 MovieClip "uwan_left_1" in Symbol 130 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.down)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_1" in Symbol 130 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.down)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_2" in Symbol 130 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.down)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "uwan_left_2" in Symbol 130 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.down)) {
if (this.hittest(_parent._parent.down_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 92 MovieClip "ii_left" in Symbol 130 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.down)) {
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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
}
}
Symbol 130 MovieClip Frame 22
this.removeMovieClip();
Symbol 132 MovieClip Frame 1
stop();
if (_global.life <= 0) {
gotoAndPlay (5);
}
Instance of Symbol 117 MovieClip "uwan_left_1" in Symbol 132 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_1" in Symbol 132 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 117 MovieClip "matari_left_2" in Symbol 132 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 117 MovieClip "uwan_left_2" in Symbol 132 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(39)) {
if (this.hittest(_parent._parent.right_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 92 MovieClip "ii_left" in Symbol 132 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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
}
}
Symbol 132 MovieClip Frame 22
this.removeMovieClip();
Symbol 136 MovieClip Frame 1
stop();
Instance of Symbol 117 MovieClip "uwan_left_1" in Symbol 136 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.space)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
} else if (Key.isDown(Key.space)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_1" in Symbol 136 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.space)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
} else if (Key.isDown(Key.shift)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_2" in Symbol 136 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.space)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
} else if (Key.isDown(Key.shift)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "uwan_left_2" in Symbol 136 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.space)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
} else if (Key.isDown(Key.shift)) {
if (this.hittest(_parent._parent.space_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 92 MovieClip "ii_left" in Symbol 136 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.space)) {
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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
} else if (Key.isDown(Key.shift)) {
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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
}
}
Symbol 136 MovieClip Frame 18
this.removeMovieClip();
Symbol 138 MovieClip Frame 1
stop();
Instance of Symbol 117 MovieClip "uwan_left_1" in Symbol 138 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.left)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_1" in Symbol 138 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.left)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "matari_left_2" in Symbol 138 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.left)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.matari++;
_parent._parent.effect.gotoAndPlay(120);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 117 MovieClip "uwan_left_2" in Symbol 138 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.left)) {
if (this.hittest(_parent._parent.left_hit)) {
_global.uwan++;
_global.life = _global.life - 3;
if (_global.life < 0) {
_root.gotoAndStop("gameover", 1);
}
_global.combo = 0;
_parent._parent.effect.gotoAndPlay(230);
_parent.gotoAndPlay(5);
}
}
}
Instance of Symbol 92 MovieClip "ii_left" in Symbol 138 MovieClip Frame 1
onClipEvent (keyDown) {
if (Key.isDown(Key.left)) {
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 >= 50) {
_global.life = 50;
}
if (_global.combo >= 100) {
_parent._parent.effect.gotoAndPlay(331);
} else {
_parent._parent.effect.gotoAndPlay(10);
}
_parent.gotoAndPlay(5);
}
}
}
Symbol 138 MovieClip Frame 22
this.removeMovieClip();
Symbol 155 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 93
stop();
Symbol 173 MovieClip Frame 72
this.stop();
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 2
stop();
Symbol 203 MovieClip Frame 3
stop();
Symbol 203 MovieClip Frame 4
stop();
Symbol 203 MovieClip Frame 5
stop();
Symbol 203 MovieClip Frame 6
stop();
Symbol 203 MovieClip Frame 7
stop();
Symbol 203 MovieClip Frame 8
stop();
Symbol 209 Button
on (release) {
getURL ("http://jbbs.shitaraba.com/bbs/read.cgi/computer/12508/1080545371/467", "_blank");
}
Symbol 223 Button
on (release) {
_global.lock = 1;
unloadMovieNum (1);
_root.gotoAndStop("start", 1);
}
Symbol 226 Button
on (release) {
_global.lock = 1;
unloadMovieNum (1);
_root.gotoAndStop("start", 1);
}