Frame 1
function sisutemu(menu, obj) {
gotoAndStop (2);
}
se_01 = new Sound(this);
se_02 = new Sound(this);
se_03 = new Sound(this);
se_04 = new Sound(this);
se_start = new Sound(this);
se_end = new Sound(this);
se_ok = new Sound(this);
se_ng = new Sound(this);
se_batu = new Sound(this);
se_maru = new Sound(this);
se_01.attachSound("01");
se_02.attachSound("02");
se_03.attachSound("03");
se_04.attachSound("04");
se_start.attachSound("start");
se_end.attachSound("end");
se_ok.attachSound("ok");
se_ng.attachSound("ng");
se_batu.attachSound("batu");
se_maru.attachSound("maru");
if (_root.MODE != "ALL") {
menu_cm = new ContextMenu();
menu_cm.builtInItems.forward_back = false;
menu_cm.builtInItems.loop = false;
menu_cm.builtInItems.play = false;
menu_cm.builtInItems.print = false;
menu_cm.builtInItems.quality = true;
menu_cm.builtInItems.rewind = false;
menu_cm.builtInItems.save = false;
menu_cm.builtInItems.zoom = true;
MenuItem2 = new ContextMenuItem();
MenuItem2.caption = "\u30BD\u30D5\u30C8\u30EA\u30BB\u30C3\u30C8";
MenuItem2.enabled = true;
MenuItem2.onSelect = sisutemu;
MenuItem2.separatorBefore = true;
MenuItem2.visible = true;
menu_cm.customItems.push(MenuItem2);
_root.menu = menu_cm;
}
stop();
Frame 2
stopAllSounds();
TRY = 1;
win = 0;
stop();
Frame 4
stop();
Mouse.hide();
Instance of Symbol 55 MovieClip "GAME" in Frame 4
onClipEvent (load) {
body_x = random(300) + 50;
body_y = random(70) + 70;
head_x = ((((body_x - 50) + random(200)) + 25) % 300) + 50;
head_y = 275;
head_r = 0;
this.BODY._x = body_x;
this.BODY._y = body_y;
this.HEAD._x = head_x;
this.HEAD._y = head_y;
this.HEAD._rotation = head_r;
add_x = 0;
add_y = 0;
add_g = 0;
speed = 15;
_parent.score = 0;
game_flg = "on";
}
onClipEvent (enterFrame) {
if (game_flg == "on") {
i = 0;
while (i < 10) {
_parent.score = _parent.score + 0.4;
head_x = head_x + (add_x / 10);
if (head_x > 400) {
head_x = 400;
} else if (head_x < 0) {
head_x = 0;
}
head_y = (head_y + (add_y / 10)) + (add_g / 10);
if (head_y > 275) {
add_x = 0;
add_y = 0;
add_g = 0;
head_y = 275;
} else if (head_y < 0) {
head_y = 0;
}
chk = Math.abs(body_x - head_x);
chk2 = Math.abs(body_y - head_y);
chk3 = add_g + add_y;
rot2 = Math.abs(rot + 90);
if ((((chk <= 3) and (chk2 <= 1)) and (rot2 <= 30)) and (chk3 > 0)) {
game_flg = "off";
i = 11;
}
i++;
}
if (game_flg == "off") {
this.HEAD._x = head_x;
this.HEAD._y = head_y;
this.HEAD._rotation = head_r;
_parent.se_02.start();
_parent.score = Math.floor(_parent.score);
} else {
add_g = add_g + 0.5;
add_y = add_y * 0.8;
add_x = add_x * 0.8;
this.HEAD._x = head_x;
this.HEAD._y = head_y;
this.HEAD._rotation = head_r;
}
}
}
on (press) {
if (game_flg == "on") {
x = _xmouse - head_x;
y = _ymouse - head_y;
rot = (Math.atan2(y, x) * 180) / Math.PI;
add_x = add_x + (Math.cos((rot * Math.PI) / 180) * speed);
add_y = add_y + (Math.sin((rot * Math.PI) / 180) * speed);
head_r = rot + 90;
_parent.se_01.start();
add_g = 0;
}
}
Frame 5
Mouse.show();
stop();
Frame 6
stop();
Mouse.show();
url = "http://kazumi386.org/~kairo/mmgame/110326.htm";
Instance of Symbol 80 MovieClip in Frame 6
onClipEvent (load) {
score = _parent.score / 100;
mes = escape(("\u30DE\u30DF\u30FC\u30F3\u3001\u30B4\u30FC\uFF01" + score) + "\u79D2\u3067\u30D1\u30A4\u30EB\u30C0\u30FC\u30AA\u30F3!! \u3082\u3046\u4F55\u3082\u6016\u304F\u306A\u3044\u3000");
mes2 = escape(" #kairogames");
url_dat = (("http://twitter.com/home/?status=" + mes) + _parent.url) + mes2;
}
Symbol 22 MovieClip Frame 13
stop();
Instance of Symbol 19 MovieClip in Symbol 22 MovieClip Frame 13
onClipEvent (enterFrame) {
loaded = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (loaded == 100) {
_parent.gotoAndPlay(14);
}
}
Symbol 22 MovieClip Frame 26
if (_root.MODE != "ALL") {
_parent.gotoAndPlay(2);
} else {
_parent.gotoAndPlay(3);
}
stop();
Symbol 32 Button
on (press) {
stopAllSounds();
gotoAndPlay (4);
}
Symbol 33 Button
on (press) {
getURL ("http://adequate.blog.shinobi.jp/Entry/211/", "_blank");
}
Symbol 49 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 49
_parent._parent.gotoAndPlay(6);
Instance of Symbol 49 MovieClip in Symbol 55 MovieClip Frame 1
onClipEvent (load) {
flg = "off";
}
onClipEvent (enterFrame) {
if ((flg == "off") and (_parent.game_flg == "off")) {
flg = "on";
gotoAndPlay (2);
}
}
Instance of Symbol 54 MovieClip in Symbol 55 MovieClip Frame 1
onClipEvent (mouseMove) {
_x = _parent._xmouse;
_y = _parent._ymouse;
}
Symbol 58 MovieClip Frame 343
stop();
Symbol 77 Button
on (press) {
getURL (url_dat, "_blank");
}
Symbol 78 Button
on (press) {
stopAllSounds();
_parent.gotoAndPlay(3);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 1;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 10;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 100;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 1000;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 10000;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 100000 /* 0x0186A0 */;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 1;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 10;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 100;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 1000;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 10000;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}
Instance of Symbol 72 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) {
x = 100000 /* 0x0186A0 */;
i = Math.floor(_parent._parent.score / x);
i = (i % 10) + 1;
oldi = i;
gotoAndStop(i);
if (_parent._parent.score < x) {
_alpha = 0;
}
}