Frame 1
_focusrect = false;
Stage.showMenu = false;
stop();
Frame 3
function set_start() {
this.item_mc._visible = false;
this.item_mc.stop();
this.close_btn._visible = false;
this.cmt_back._visible = false;
this.set_item();
}
function set_item() {
c = 1;
while (c <= this.maxitem) {
if (this.flg["item" + c] == 0) {
this["icon" + c]._visible = false;
} else if (this.flg["item" + c] == 1) {
this["icon" + c]._visible = true;
this["icon" + c]._alpha = 100;
} else if (this.flg["item" + c] == "die") {
this["icon" + c]._visible = true;
this["icon" + c]._alpha = 30;
}
c++;
}
}
function navi(c) {
this.navi_mc.gotoAndStop(c);
}
function selectitem(c) {
if (c != this.pre_choice) {
if (this.pre_choice != 0) {
this["icon" + this.pre_choice].gotoAndStop(1);
}
this.pre_choice = c;
}
if (c != 0) {
this["icon" + c].gotoAndStop(2);
}
this.setHash("choice", c);
}
function getitem(c) {
releaseitem();
this.getitem_flg = 1;
this.setHash("item" + c, 1);
this.set_item();
this.selectitem(0);
}
function seesitem(c) {
if (c != 0) {
this.right_btn._visible = false;
this.left_btn._visible = false;
this.down_btn._visible = false;
this.up_btn._visible = false;
this.item_mc.gotoAndStop(c);
this.item_mc._visible = true;
if (this.getitem_flg == 0) {
this.close_btn._visible = true;
} else {
this.close_btn._visible = false;
}
}
}
function releaseitem() {
this.selectitem(0);
this.right_btn._visible = true;
this.left_btn._visible = true;
this.down_btn._visible = true;
this.up_btn._visible = true;
this.item_mc._visible = false;
this.close_btn._visible = false;
this.getitem_flg = 0;
this.cmt(0);
}
function useditem(c) {
if (c > 0) {
this.ci = c;
this.cm = c;
} else {
this.ci = 1;
this.cm = this.maxitem;
}
this.selectitem(0);
c = ci;
while (c <= cm) {
this.setHash("item" + c, "die");
c++;
}
this.set_item();
}
function sound4() {
sdStart(29, 0);
}
function cmt(c) {
if (c == pre_c) {
} else {
clearInterval(ID);
this.sound4_flg = 0;
pre_c = c;
if (c == 0) {
this.cmt_back._visible = false;
} else {
this.cmt_back._visible = true;
}
comment_txt = cmt_array[c];
}
}
function cmt2(c) {
if (c == pre_c) {
} else {
clearInterval(ID);
this.sound4_flg = 0;
pre_c = c;
if (c == 0) {
this.cmt_back._visible = false;
} else {
this.cmt_back._visible = true;
}
this.mst_cmt = this.cmt_array[c];
this.cnt_mst = this.mst_cmt.length;
this.cnt_cmt = 0;
this.comment_txt = "";
this.onEnterFrame = function () {
if (cnt_cmt == cnt_mst) {
clearInterval(ID);
this.sound4_flg = 0;
delete this.onEnterFrame;
this.nextFrame();
} else {
if (cnt_cmt == 0) {
if (this.sound4_flg == 0) {
this.sound4_flg = 1;
ID = setInterval(sound4, 50);
}
}
comment_txt = comment_txt + cmt_array[c].substr(cnt_cmt, 1);
cnt_cmt++;
}
};
}
}
function rockbtn() {
this.right_btn._visible = false;
this.left_btn._visible = false;
this.down_btn._visible = false;
this.up_btn._visible = false;
this.noitem = 1;
}
function unrockbtn() {
this.right_btn._visible = true;
this.left_btn._visible = true;
this.down_btn._visible = true;
this.up_btn._visible = true;
this.noitem = 0;
}
function setHash(flg_name, flg_value) {
this.flg[flg_name] = flg_value;
}
function goLabel(labelname) {
cntLabel++;
this.flg["Label" + cntLabel] = labelname;
this.gotoAndStop(labelname);
}
function backLabel() {
cntLabel--;
this.gotoAndStop(this.flg["Label" + cntLabel]);
}
function AboutItem() {
switch (this.flg.choice) {
case 1 :
this.seesitem("card");
return;
case 2 :
this.seesitem("kunai");
return;
case 3 :
this.seesitem("key1");
return;
case 4 :
this.seesitem("key2");
return;
case 5 :
this.seesitem("kami1");
return;
case 6 :
this.seesitem("kami2");
return;
case 7 :
this.seesitem("bo");
return;
case 8 :
this.seesitem("nawa");
return;
case 9 :
this.seesitem("kagi");
return;
case 10 :
this.seesitem("kaginawa");
}
}
this.maxitem = 10;
this.flg = {};
cmt_array = new Array();
cmt_array[0] = "";
cmt_array[1] = "\u30AB\u30FC\u30C9\u30AD\u30FC\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[2] = "\u82E6\u7121\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[3] = "\u9375\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[4] = "\u9375\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[5] = "\u7D19\u5207\u308C\u3092\u307F\u3064\u3051\u305F\uFF01";
cmt_array[6] = "\u7D19\u5207\u308C\u3092\u307F\u3064\u3051\u305F\uFF01";
cmt_array[7] = "\u9577\u3044\u68D2\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[8] = "\u7E04\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[9] = "\u9264\u3092\u898B\u3064\u3051\u305F\uFF01";
cmt_array[10] = "\u7E04\u3068\u9264\u3092\u7D44\u307F\u5408\u308F\u305B\u3066\u9264\u7E04\u3092\u4F5C\u3063\u305F\uFF01";
cmt_array[11] = "\u5973\u5C06\u304C\u51FA\u3057\u3066\u304F\u308C\u305F\u7F8A\u7FB9\u3060";
cmt_array[12] = "\u304A\u8336\u306F\u3082\u3046\u51B7\u305F\u304F\u306A\u3063\u3066\u3044\u308B";
cmt_array[13] = "\u9375\u304C\u5408\u308F\u306A\u3044\u30FB\u30FB\u30FB";
cmt_array[14] = "\u9375\u304C\u958B\u3044\u305F\uFF01";
cmt_array[15] = "\u9811\u4E08\u3067\u958B\u304D\u305D\u3046\u306B\u306A\u3044\u30FB\u30FB\u30FB";
cmt_array[16] = "\u30C4\u30DE\u30DF\u3092\u56DE\u3057\u305F";
cmt_array[17] = "\u91D1\u5EAB\u306E\u6249\u3092\u958B\u3051\u305F";
cmt_array[18] = "\u7A74\u304C\u958B\u3044\u3066\u3044\u308B\u30FB\u30FB\u30FB";
cmt_array[19] = "\u5C0F\u3055\u306A\u6249\u304C\u3042\u308B\u30FB\u30FB\u30FB\n\u3069\u3046\u3084\u3063\u305F\u3089\u958B\u304F\u306E\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[20] = "\u3069\u3046\u3084\u3063\u305F\u3089\u958B\u304F\u306E\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[21] = "\u9375\u304C\u304B\u304B\u3063\u3066\u3044\u308B\u30FB\u30FB\u30FB";
cmt_array[22] = "\u30AB\u30FC\u30C9\u30EA\u30FC\u30C0\u30FC\u3060\u30FB\u30FB\u30FB";
cmt_array[23] = "\u6570\u5B57\u304C\u73FE\u308C\u305F";
cmt_array[24] = "\u4F55\u304B\u306E\u30DC\u30BF\u30F3\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[25] = "\u58F7\u3092\u52D5\u304B\u3057\u305F";
cmt_array[26] = "\u639B\u3051\u8EF8\u3092\u3081\u304F\u3063\u305F";
cmt_array[27] = "\u300E\u30AB\u30C1\u30C3\u300F\n\u4F55\u306E\u97F3\u3060\u308D\u3046";
cmt_array[28] = "\u9375\u304C\u9589\u307E\u3063\u3066\u308B\n\u5973\u5C06\u304C\u9589\u3081\u3066\u3044\u3063\u305F\u306E\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[29] = "\u4F55\u304B\u304C\u523A\u3055\u3063\u3066\u3044\u308B\u30FB\u30FB\u30FB\n\u9AD8\u304F\u3066\u5C4A\u304B\u306A\u3044\u30FB\u30FB\u30FB";
cmt_array[30] = "\u4F55\u304B\u306E\u98FE\u308A\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[31] = "\u9AD8\u304F\u3066\u98DB\u3073\u964D\u308A\u308B\u306B\u306F\u5371\u967A\u3059\u304E\u308B\u30FB\u30FB\u30FB";
cmt_array[32] = "\u3053\u3093\u306A\u3068\u3053\u308D\u306B\u6249\u304C\u30FB\u30FB\u30FB\n\u3069\u3046\u3059\u308C\u3070\u958B\u304F\u3060\u308D\u3046\u304B";
cmt_array[33] = "\u9375\u304C\u5408\u308F\u306A\u3044\u30FB\u30FB\u30FB";
cmt_array[34] = "\u9375\u304C\u958B\u3044\u305F\uFF01";
cmt_array[35] = "\u5927\u304D\u306A\u5CA9\u3060\u30FB\u30FB\u30FB\n\u6301\u3061\u4E0A\u3052\u3089\u308C\u305D\u3046\u306B\u306A\u3044\u30FB\u30FB\u30FB";
cmt_array[36] = "";
cmt_array[37] = "";
cmt_array[38] = "";
cmt_array[39] = "";
cmt_array[40] = "";
cmt_array[41] = "";
cmt_array[42] = "";
cmt_array[43] = "";
cmt_array[44] = "";
cmt_array[45] = "";
cmt_array[46] = "";
cmt_array[47] = "";
cmt_array[48] = "";
cmt_array[49] = "";
cmt_array[50] = "";
cmt_array[51] = "";
cmt_array[52] = "";
cmt_array[53] = "";
cmt_array[54] = "";
cmt_array[55] = "";
cmt_array[56] = "";
cmt_array[57] = "";
cmt_array[58] = "";
cmt_array[59] = "";
cmt_array[60] = "\u53E4\u305D\u3046\u306A\u7573\u3060";
cmt_array[61] = "\u53E4\u305D\u3046\u306A\u30C6\u30FC\u30D6\u30EB\u3060\u3002";
cmt_array[62] = "\u58C1\u306B\u306F\u4F55\u3082\u306A\u3044\u307F\u305F\u3044\u3060\u30FB\u30FB\u30FB";
cmt_array[63] = "";
cmt_array[64] = "";
cmt_array[65] = "";
cmt_array[66] = "";
cmt_array[67] = "";
cmt_array[68] = "";
cmt_array[69] = "";
cmt_array[70] = "";
cmt_array[71] = "";
cmt_array[72] = "";
cmt_array[73] = "";
cmt_array[74] = "";
cmt_array[75] = "";
cmt_array[76] = "";
cmt_array[77] = "\u9577\u3044\u68D2\u3092\u53D6\u3063\u305F";
cmt_array[78] = "";
cmt_array[79] = "";
cmt_array[80] = "";
cmt_array[81] = "\u5FCD\u8005\u5C4B\u6577\u306B\u30AB\u30FC\u30C9\u30AD\u30FC\u30FB\u30FB\u30FB\uFF1F";
cmt_array[82] = "\u92ED\u3044\u82E6\u7121\u3060\u3002";
cmt_array[83] = "\u3069\u3053\u306E\u9375\u3060\u308D\u3046\u30FB\u30FB\u30FB\uFF1F";
cmt_array[84] = "\u3069\u3053\u306E\u9375\u3060\u308D\u3046\u30FB\u30FB\u30FB\uFF1F";
cmt_array[85] = "\u591C\u306E\u5149\u30FB\u30FB\u30FB\u306A\u3093\u306E\u3053\u3068\u3060\uFF1F";
cmt_array[86] = "\u6697\u53F7\u3060\u308D\u3046\u304B\u30FB\u30FB\u30FB";
cmt_array[87] = "\u9577\u3044\u68D2\u3060\u3002";
cmt_array[88] = "\u9577\u3044\u7E04\u3060\u3002";
cmt_array[89] = "\u9264\u3060\u3002\u8CC7\u6599\u3067\u898B\u305F\u3053\u3068\u3042\u308B\u306A\u3002";
cmt_array[90] = "\u632F\u308A\u56DE\u3057\u305F\u3089\u5371\u967A\u3060\u30FB\u30FB\u30FB";
cmt_array[91] = "";
cmt_array[92] = "";
cmt_array[93] = "";
cmt_array[94] = "";
cmt_array[95] = "";
cmt_array[96] = "";
cmt_array[97] = "";
cmt_array[98] = "";
cmt_array[99] = "";
cmt_array[100] = "";
cmt_array[101] = "";
cmt_array[102] = "";
cmt_array[103] = "";
cmt_array[104] = "";
cmt_array[105] = "";
cmt_array[106] = "";
cmt_array[107] = "";
cmt_array[108] = "";
cmt_array[109] = "";
cmt_array[110] = "";
cmt_array[111] = "";
cmt_array[112] = "";
cmt_array[113] = "";
cmt_array[114] = "";
cmt_array[115] = "";
cmt_array[116] = "";
cmt_array[117] = "";
cmt_array[118] = "";
cmt_array[119] = "";
cmt_array[120] = "";
cmt_array[121] = "";
cmt_array[122] = "";
cmt_array[123] = "";
cmt_array[124] = "";
cmt_array[125] = "";
cmt_array[126] = "";
cmt_array[127] = "";
cmt_array[128] = "";
cmt_array[129] = "";
cmt_array[130] = "";
this.getitem_flg = 0;
this.noitem = 0;
this.pre_choice = 0;
c = 1;
while (c <= this.maxitem) {
this.setHash("item" + c, 0);
c++;
}
this.sound4_flg = 0;
this.cntLabel = 0;
this.set_start();
this.flg.tatami_key = 0;
this.flg.iwa = 0;
this.flg.kake_mado = 0;
this.flg.kinko_num = 0;
this.flg.kinko_key = 0;
this.flg.tana_key = 0;
this.flg.tubo = 0;
this.flg.kake = 0;
this.flg.err = 0;
this.flg.kinko_card = 0;
this.flg.komado = 0;
this.flg.mado_bo = 0;
this.flg.mado_open = 0;
this.flg.kaginawa = 0;
this.flg.yuka_key = 0;
this.flg.kami1_open = 0;
this.flg.kami2_open = 0;
this.flg.tumami = 0;
this.flg.kunai = 0;
this.flg.nawa = 0;
Instance of Symbol 13 MovieClip "icon1" in Frame 3
onClipEvent (load) {
no = 1;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 16 MovieClip "icon2" in Frame 3
onClipEvent (load) {
no = 2;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 20 MovieClip "icon3" in Frame 3
onClipEvent (load) {
no = 3;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 23 MovieClip "icon4" in Frame 3
onClipEvent (load) {
no = 4;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 26 MovieClip "icon5" in Frame 3
onClipEvent (load) {
no = 5;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 29 MovieClip "icon6" in Frame 3
onClipEvent (load) {
no = 6;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 32 MovieClip "icon7" in Frame 3
onClipEvent (load) {
no = 7;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 35 MovieClip "icon8" in Frame 3
onClipEvent (load) {
no = 8;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 38 MovieClip "icon9" in Frame 3
onClipEvent (load) {
no = 9;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Instance of Symbol 41 MovieClip "icon10" in Frame 3
onClipEvent (load) {
no = 10;
}
on (release) {
if (_parent.flg["item" + no] == 1) {
_parent.selectitem(no);
}
}
Frame 5
this.goLabel("1to1");
stop();
Frame 6
this.current_code = 1;
Instance of Symbol 109 MovieClip in Frame 6
onClipEvent (load) {
if (_parent.flg.item7 == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(4);
}
}
Frame 7
this.current_code = 2;
Frame 8
this.current_code = 3;
Instance of Symbol 142 MovieClip in Frame 8
onClipEvent (load) {
if (_parent.flg.tubo == 0) {
this.gotoAndStop(1);
} else if (_parent.flg.kake == 0) {
this.gotoAndStop(2);
} else if (_parent.flg.komado == 0) {
this.gotoAndStop(3);
} else if (_parent.flg.item3 == 0) {
this.gotoAndStop(4);
} else {
this.gotoAndStop(5);
}
}
Frame 9
this.current_code = 4;
Instance of Symbol 158 MovieClip in Frame 9
onClipEvent (load) {
if (_parent.flg.item2 == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(5);
}
}
Frame 10
this.current_code = 5;
Instance of Symbol 171 MovieClip in Frame 10
onClipEvent (load) {
if (_parent.flg.kaginawa == 0) {
if (_parent.flg.mado_open == 0) {
if (_parent.flg.mado_bo == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(4);
}
} else if (_parent.flg.mado_bo == 0) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(3);
}
} else {
this.gotoAndStop(5);
}
}
Instance of Symbol 486 MovieClip in Frame 11
onClipEvent (load) {
this.room_no = 1;
this.room_max = 5;
this.room_max_no = 50;
this.room_min_no = 1;
this.room_array = new Array();
this.room_array[1] = 1;
this.room_array[2] = 10;
this.room_array[3] = 20;
this.room_array[4] = 31;
this.room_array[5] = 40;
this.gotoAndStop(room_array[_parent.current_code]);
}
onClipEvent (enterFrame) {
if (_parent.current_code == 0) {
this.k_c_no = this._currentframe + _parent.current;
if (this.k_c_no > this.room_max_no) {
this.k_c_no = this.room_min_no;
}
if (this.k_c_no < this.room_min_no) {
this.k_c_no = this.room_max_no;
}
this.gotoAndStop(this.k_c_no);
this.room_i = 1;
while (room_i <= this.room_max) {
if (this._currentframe == this.room_array[this.room_i]) {
_parent.current = 0;
_parent.current_code = this.room_i;
_parent.gotoAndStop((this.room_no + "to") + this.room_i);
this.stop();
}
this.room_i++;
}
} else {
this.gotoAndStop(this.room_array[_parent.current_code]);
_parent.current_code = 0;
}
}
Instance of Symbol 611 MovieClip in Frame 19
onClipEvent (load) {
if (_parent.flg.item2 == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 627 MovieClip in Frame 20
onClipEvent (load) {
if (_parent.flg.komado == 0) {
if (_parent.flg.kake == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(4);
}
} else if (_parent.flg.item3 == 0) {
this.gotoAndStop(6);
} else {
this.gotoAndStop(5);
}
}
Instance of Symbol 637 MovieClip in Frame 21
onClipEvent (load) {
if (_parent.flg.komado == 0) {
this.gotoAndStop(1);
} else if (_parent.flg.item3 == 0) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 643 MovieClip in Frame 22
onClipEvent (load) {
if (_parent.flg.item4 == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 682 MovieClip in Frame 24
onClipEvent (load) {
if (_parent.flg.kaginawa == 0) {
if (_parent.flg.mado_open == 0) {
if (_parent.flg.mado_bo == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(3);
}
} else if (_parent.flg.mado_bo == 0) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else {
_parent.gotoAndStop("go_ending");
}
}
Instance of Symbol 688 MovieClip in Frame 25
onClipEvent (load) {
if (_parent.flg.item7 == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Frame 27
stop();
Symbol 5 Button
on (release) {
this.gotoAndStop(2);
}
Symbol 8 Button
on (release) {
gotoAndPlay (3);
}
Symbol 13 MovieClip Frame 1
stop();
Symbol 16 MovieClip Frame 1
stop();
Symbol 20 MovieClip Frame 1
stop();
Symbol 23 MovieClip Frame 1
stop();
Symbol 26 MovieClip Frame 1
stop();
Symbol 29 MovieClip Frame 1
stop();
Symbol 32 MovieClip Frame 1
stop();
Symbol 35 MovieClip Frame 1
stop();
Symbol 38 MovieClip Frame 1
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 46 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
}
}
Symbol 47 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(81);
}
}
Symbol 50 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(82);
}
}
Symbol 53 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(83);
}
}
Symbol 56 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(84);
}
}
Symbol 59 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.flg.kami1_open = 1;
this.gotoAndStop("kami1_open");
}
}
Symbol 62 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.flg.kami2_open = 1;
this.gotoAndStop("kami2_open");
}
}
Symbol 65 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(87);
}
}
Symbol 68 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else if (_parent.flg.choice == 9) {
_parent.useditem(9);
_parent.useditem(8);
_parent.getitem(10);
_parent.seesitem(10);
_parent.cmt(10);
_parent.rockbtn();
} else {
_parent.cmt(88);
}
}
Symbol 71 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else if (_parent.flg.choice == 8) {
_parent.useditem(8);
_parent.useditem(9);
_parent.getitem(10);
_parent.seesitem(10);
_parent.cmt(10);
_parent.rockbtn();
} else {
_parent.cmt(89);
}
}
Symbol 74 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(90);
}
}
Symbol 77 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(85);
}
}
Symbol 80 Button
on (release) {
if (_parent.getitem_flg == 1) {
_parent.unrockbtn();
_parent.releaseitem();
} else {
_parent.cmt(86);
}
}
Symbol 81 MovieClip Frame 1
stop();
Symbol 87 Button
on (release) {
this.unrockbtn();
this.releaseitem();
}
Symbol 92 Button
on (release) {
_parent.cmt(60);
}
Symbol 93 Button
on (release) {
if (_parent.flg.item1 == 0) {
_parent.cmt(0);
this.gotoAndStop(2);
} else {
_parent.cmt(0);
this.gotoAndStop(3);
}
}
Symbol 96 Button
on (release) {
_parent.getitem(1);
_parent.seesitem(1);
_parent.rockbtn();
_parent.cmt(1);
this.gotoAndStop(3);
}
Symbol 97 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(1);
}
Symbol 102 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.item1 == 0) {
this.gotoAndStop(6);
} else {
this.gotoAndStop(5);
}
}
Symbol 105 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(4);
}
Symbol 108 Button
on (release) {
_parent.getitem(1);
_parent.seesitem(1);
_parent.rockbtn();
_parent.cmt(1);
this.gotoAndStop(5);
}
Symbol 109 MovieClip Frame 1
stop();
Symbol 112 Button
on (release) {
if (this.pre_choice != 0) {
this.cmt(0);
this.AboutItem();
this.rockbtn();
}
}
Symbol 113 Button
on (release) {
this.cmt(62);
}
Symbol 114 Button
on (release) {
this.cmt(61);
}
Symbol 115 Button
on (release) {
this.cmt(0);
this.goLabel("table_up");
}
Symbol 116 Button
on (release) {
this.cmt(0);
this.goLabel("bo_up");
}
Symbol 118 Button
on (release) {
this.cmt(0);
this.current = -1;
this.goLabel("1mov");
}
Symbol 120 Button
on (release) {
this.cmt(0);
this.current = 1;
this.goLabel("1mov");
}
Symbol 123 Button
on (release) {
this.cmt(60);
}
Symbol 124 Button
on (release) {
this.cmt(0);
this.goLabel("maki_up");
}
Symbol 125 Button
on (release) {
this.cmt(0);
this.goLabel("kinko_up");
}
Symbol 126 Button
on (release) {
this.cmt(0);
this.goLabel("hiki_up");
}
Symbol 129 Button
on (release) {
_parent.cmt(62);
}
Symbol 130 Button
on (release) {
_parent.cmt(0);
_parent.flg.tubo = 1;
this.gotoAndStop(2);
}
Symbol 133 Button
on (release) {
_parent.cmt(26);
_parent.flg.kake = 1;
this.gotoAndStop(3);
}
Symbol 134 Button
on (release) {
_parent.cmt(0);
_parent.goLabel("kake_up");
}
Symbol 137 Button
on (release) {
_parent.cmt(0);
_parent.goLabel("key1_up");
}
Symbol 142 MovieClip Frame 1
stop();
Symbol 145 Button
on (release) {
if (_parent.flg.item4 == 0) {
_parent.cmt(0);
this.gotoAndStop(2);
} else {
_parent.cmt(0);
this.gotoAndStop(3);
}
}
Symbol 148 Button
on (release) {
_parent.cmt(0);
_parent.goLabel("key2_up");
}
Symbol 155 Button
on (release) {
if (_parent.flg.item4 == 0) {
_parent.cmt(0);
this.gotoAndStop(6);
} else {
_parent.cmt(0);
this.gotoAndStop(4);
}
}
Symbol 158 MovieClip Frame 1
stop();
Symbol 159 Button
on (release) {
this.cmt(0);
this.goLabel("kunai_up");
}
Symbol 160 Button
on (release) {
this.cmt(28);
}
Symbol 172 Button
on (release) {
this.cmt(0);
this.goLabel("tatami_up");
}
Symbol 173 Button
on (release) {
this.cmt(0);
this.goLabel("mado_up");
}
Instance of Symbol 195 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (_parent._parent.flg.kunai == 1) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 218 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (_parent._parent.flg.item7 == 1) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 245 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if ((_parent._parent.flg.tubo == 1) and (_parent._parent.flg.kake == 0)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 272 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if ((_parent._parent.flg.tubo == 1) and (_parent._parent.flg.kake == 1)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 295 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (_parent._parent.flg.komado == 1) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 324 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if ((_parent._parent.flg.komado == 1) and (_parent._parent.flg.item3 == 0)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (((_parent._parent.flg.mado_open == 1) and (_parent._parent.flg.mado_bo == 0)) and (_parent._parent.flg.item7 == 0)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 364 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (((_parent._parent.flg.mado_open == 1) and (_parent._parent.flg.mado_bo == 0)) and (_parent._parent.flg.item7 == 1)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 375 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if ((_parent._parent.flg.mado_bo == 1) and (_parent._parent.flg.mado_open == 0)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 386 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if ((_parent._parent.flg.mado_open == 1) and (_parent._parent.flg.mado_bo == 1)) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 397 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent._currentframe);
}
onClipEvent (load) {
if (_parent._parent.flg.kaginawa == 1) {
this.gotoAndStop(_parent._currentframe);
this._visible = true;
} else {
this._visible = false;
}
}
Symbol 489 Button
on (release) {
this.cmt(12);
}
Symbol 490 Button
on (release) {
this.cmt(11);
}
Symbol 492 Button
on (release) {
this.cmt(0);
this.goLabel("1to1");
}
Symbol 495 Button
on (release) {
this.gotoAndStop(2);
}
Symbol 498 Button
on (release) {
if (_parent.flg.item5 == 0) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(4);
}
}
Symbol 501 Button
on (release) {
_parent.getitem(5);
_parent.seesitem(5);
_parent.rockbtn();
_parent.cmt(5);
this.gotoAndStop(4);
}
Symbol 504 MovieClip Frame 1
stop();
Symbol 505 Button
on (release) {
this.cmt(0);
this.goLabel("1to2");
}
Symbol 508 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(2);
}
Symbol 509 Button
on (release) {
if (_parent.flg.item6 == 0) {
_parent.cmt(0);
this.gotoAndStop(3);
} else {
_parent.cmt(0);
this.gotoAndStop(4);
}
}
Symbol 510 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(5);
}
Symbol 513 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(1);
}
Symbol 516 Button
on (release) {
_parent.getitem(6);
_parent.seesitem(6);
_parent.rockbtn();
_parent.cmt(6);
this.gotoAndStop(4);
}
Symbol 521 MovieClip Frame 1
stop();
Symbol 524 Button
on (release) {
if (_parent.flg.tana_key == 1) {
_parent.cmt(0);
this.gotoAndStop(2);
}
}
Symbol 525 Button
on (release) {
if (_parent.flg.tana_key == 0) {
if (_parent.flg.choice == 3) {
_parent.useditem(3);
_parent.cmt(14);
_parent.flg.tana_key = 1;
} else if (_parent.flg.choice == 4) {
_parent.cmt(13);
} else {
_parent.cmt(21);
}
} else {
_parent.cmt(0);
this.gotoAndStop(2);
}
}
Symbol 526 Button
on (release) {
if (_parent.flg.tana_key == 1) {
if (_parent.flg.kinko_card == 0) {
_parent.cmt(0);
this.gotoAndStop(10);
} else if (_parent.flg.tumami == 0) {
_parent.cmt(0);
this.gotoAndStop(11);
} else {
_parent.cmt(0);
this.gotoAndStop(12);
}
}
}
Symbol 529 Button
on (release) {
if (_parent.flg.kinko_key == 0) {
if (_parent.flg.kinko_card == 0) {
_parent.cmt(0);
this.gotoAndStop(3);
} else {
_parent.cmt(0);
this.gotoAndStop(4);
}
} else if (_parent.flg.tumami == 0) {
_parent.cmt(0);
this.gotoAndStop(4);
} else {
_parent.cmt(0);
this.gotoAndStop(5);
}
}
Symbol 532 Button
on (release) {
if (_parent.flg.choice == 1) {
_parent.cmt(0);
_parent.flg.kinko_card = 1;
_parent.useditem(1);
this.gotoAndStop(4);
} else {
_parent.cmt(22);
}
}
Symbol 533 Button
on (release) {
_parent.cmt(15);
}
Symbol 534 Button
on (release) {
_parent.cmt(0);
this.gotoAndStop(9);
}
Symbol 537 Button
on (release) {
if (_parent.flg.kinko_key == 0) {
_parent.cmt(23);
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 0;
_parent.flg.kinko_num = 0;
this.gotoAndStop(6);
} else {
this.gotoAndStop(13);
}
}
Symbol 538 Button
on (release) {
if (_parent.flg.kinko_key == 0) {
_parent.cmt(15);
} else if (_parent.flg.tumami == 0) {
_parent.cmt(0);
_parent.flg.tumami = 1;
this.gotoAndStop(5);
}
}
Symbol 541 Button
on (release) {
if (_parent.flg.item9 == 0) {
_parent.cmt(0);
this.gotoAndStop(7);
} else {
_parent.cmt(0);
this.gotoAndStop(8);
}
}
Symbol 558 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "7";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "7";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "7";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "7";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 559 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "8";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "8";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "8";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "8";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 560 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "9";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "9";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "9";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "9";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 561 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "4";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "4";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "4";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "4";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 562 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "5";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "5";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "5";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "5";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 563 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "6";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "6";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "6";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "6";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 564 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "1";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "1";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "1";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "1";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 565 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "2";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "2";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "2";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "2";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 566 Button
on (release) {
_parent.cmt(0);
if (_parent.flg.kinko_num == 0) {
num1 = "3";
_parent.flg.kinko_num = 1;
} else if (_parent.flg.kinko_num == 1) {
num2 = "3";
_parent.flg.kinko_num = 2;
} else if (_parent.flg.kinko_num == 2) {
num3 = "3";
_parent.flg.kinko_num = 3;
} else if (_parent.flg.kinko_num == 3) {
if ((_parent.flg.kami1_open == 1) and (_parent.flg.kami2_open == 1)) {
num4 = "3";
_parent.flg.kinko_num = 4;
if ((((num1 == "2") and (num2 == "7")) and (num3 == "8")) and (num4 == "4")) {
_parent.useditem(5);
_parent.useditem(6);
_parent.flg.kinko_key = 1;
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
} else {
num1 = "0";
num2 = "0";
num3 = "0";
num4 = "0";
_parent.flg.err = 1;
_parent.flg.kinko_num = 0;
}
}
}
Symbol 570 MovieClip Frame 1
stop();
Symbol 573 Button
on (release) {
_parent.getitem(9);
_parent.seesitem(9);
_parent.rockbtn();
_parent.cmt(9);
this.gotoAndStop(8);
}
Symbol 578 Button
on (release) {
_parent.cmt(24);
}
Symbol 581 Button
on (release) {
if (_parent.flg.tana_key == 1) {
_parent.cmt(0);
this.gotoAndStop(3);
}
}
Symbol 584 Button
on (release) {
if (_parent.flg.tana_key == 1) {
_parent.cmt(0);
this.gotoAndStop(4);
}
}
Symbol 587 Button
on (release) {
if (_parent.flg.tana_key == 1) {
_parent.cmt(0);
this.gotoAndStop(5);
}
}
Symbol 603 MovieClip Frame 1
stop();
Symbol 604 MovieClip Frame 1
stop();
Instance of Symbol 570 MovieClip "moji" in Symbol 604 MovieClip Frame 6
onClipEvent (enterFrame) {
if (_parent._parent.flg.kinko_key == 0) {
if (_parent._parent.flg.err == 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 603 MovieClip in Symbol 604 MovieClip Frame 13
/* no clip actions */
Symbol 605 Button
on (release) {
this.cmt(0);
if (this.kinko_up._currentframe == 6) {
this.kinko_up.gotoAndStop(4);
} else if (this.kinko_up._currentframe == 9) {
this.kinko_up.gotoAndStop(3);
} else {
this.goLabel("1to2");
}
}
Symbol 608 Button
on (release) {
if (_parent.flg.choice == 7) {
_parent.flg.kunai = 1;
_parent.getitem(2);
_parent.seesitem(2);
_parent.rockbtn();
_parent.cmt(2);
this.gotoAndStop(2);
} else {
_parent.cmt(29);
}
}
Symbol 611 MovieClip Frame 1
stop();
Symbol 612 Button
on (release) {
this.cmt(0);
this.goLabel("1to4");
}
Symbol 615 Button
on (release) {
if (_parent.flg.choice == 7) {
_parent.flg.kake_mado = 1;
_parent.cmt(27);
this.gotoAndStop(2);
} else {
_parent.cmt(18);
}
}
Symbol 622 Button
on (release) {
if (_parent.flg.choice == 7) {
_parent.flg.kake_mado = 1;
_parent.cmt(27);
this.gotoAndStop(3);
} else {
_parent.cmt(18);
}
}
Symbol 627 MovieClip Frame 1
stop();
Symbol 628 Button
on (release) {
this.cmt(0);
this.goLabel("1to3");
}
Symbol 631 Button
on (release) {
if (_parent.flg.kake_mado == 1) {
if (_parent.flg.item3 == 0) {
_parent.cmt(0);
_parent.flg.komado = 1;
this.gotoAndStop(2);
} else {
_parent.cmt(0);
this.gotoAndStop(3);
}
} else {
_parent.cmt(19);
}
}
Symbol 634 Button
on (release) {
_parent.getitem(3);
_parent.seesitem(3);
_parent.rockbtn();
_parent.cmt(3);
this.gotoAndStop(3);
}
Symbol 637 MovieClip Frame 1
stop();
Symbol 640 Button
on (release) {
_parent.getitem(4);
_parent.seesitem(4);
_parent.rockbtn();
_parent.cmt(4);
this.gotoAndStop(2);
}
Symbol 643 MovieClip Frame 1
stop();
Symbol 648 Button
on (release) {
if (_parent.flg.tatami_key == 1) {
if (_parent.flg.iwa == 0) {
_parent.cmt(0);
this.gotoAndStop(3);
} else if (_parent.flg.nawa == 0) {
_parent.cmt(0);
this.gotoAndStop(8);
} else {
_parent.cmt(0);
this.gotoAndStop(7);
}
} else {
_parent.cmt(32);
}
}
Symbol 649 Button
on (release) {
if (_parent.flg.yuka_key == 0) {
if (_parent.flg.choice == 4) {
_parent.flg.yuka_key = 1;
_parent.useditem(4);
_parent.cmt(34);
_parent.flg.tatami_key = 1;
} else if (_parent.flg.choice == 3) {
_parent.cmt(33);
} else {
_parent.cmt(21);
}
}
}
Symbol 652 Button
on (release) {
if (_parent.flg.iwa == 0) {
_parent.cmt(0);
this.gotoAndStop(4);
} else if (_parent.flg.item8 == 0) {
_parent.cmt(0);
this.gotoAndStop(5);
} else {
_parent.cmt(0);
this.gotoAndStop(6);
}
}
Symbol 655 Button
on (release) {
if (_parent.flg.choice == 2) {
_parent.cmt(0);
_parent.useditem(2);
_parent.flg.iwa = 1;
this.gotoAndStop(5);
} else {
_parent.cmt(35);
}
}
Symbol 658 Button
on (release) {
_parent.flg.nawa = 1;
_parent.getitem(8);
_parent.seesitem(8);
_parent.rockbtn();
_parent.cmt(8);
this.gotoAndStop(6);
}
Symbol 665 MovieClip Frame 1
stop();
Symbol 666 Button
on (release) {
this.cmt(0);
this.goLabel("1to5");
}
Symbol 669 Button
on (release) {
_parent.flg.mado_open = 1;
this.gotoAndStop(2);
}
Symbol 670 Button
on (release) {
if (_parent.flg.choice == 7) {
_parent.flg.mado_bo = 1;
_parent.useditem(7);
this.gotoAndStop(3);
} else {
_parent.cmt(30);
}
}
Symbol 673 Button
on (release) {
if (_parent.flg.choice == 7) {
_parent.flg.mado_bo = 1;
_parent.useditem(7);
this.gotoAndStop(4);
} else {
_parent.cmt(30);
}
}
Symbol 674 Button
on (release) {
_parent.cmt(31);
}
Symbol 677 Button
on (release) {
_parent.flg.mado_open = 1;
this.gotoAndStop(4);
}
Symbol 678 Button
on (release) {
_parent.flg.mado_bo = 0;
_parent.getitem(7);
_parent.seesitem(7);
_parent.rockbtn();
_parent.cmt(77);
this.gotoAndStop(1);
}
Symbol 681 Button
on (release) {
if (_parent.flg.choice == 10) {
_parent.useditem(10);
_parent.flg.kaginawa = 1;
_parent.goLabel("go_ending");
} else {
_parent.flg.mado_bo = 0;
_parent.getitem(7);
_parent.seesitem(7);
_parent.rockbtn();
_parent.cmt(77);
this.gotoAndStop(2);
}
}
Symbol 682 MovieClip Frame 1
stop();
Symbol 685 Button
on (release) {
_parent.getitem(7);
_parent.seesitem(7);
_parent.rockbtn();
_parent.cmt(7);
this.gotoAndStop(2);
}
Symbol 688 MovieClip Frame 1
stop();
Symbol 691 Button
on (release) {
gotoAndPlay (27);
}
Symbol 694 Button
on (release) {
this.gotoAndStop("end");
}