//============================================================================== // RagnarokOnline Original Othello Script Ver0.1 by Blaze //============================================================================== //========================================== // Warp //------------------------------------------ knight_1-1.gat,99,65,0 warp othellowarp 1,1,izlude.gat,127,110 izlude.gat,123,121,3 script オセロゲーム案内員 86,{ mes "[オセロゲーム案内員]"; mes "私はオセロゲーム会場への"; mes "ご案内をしております。"; mes "オセロで遊びますか?"; next; if(select("オセロ会場へ移動","やめる")==2) { mes "[オセロゲーム案内員]"; mes "またいつでもいらしてください。"; close; } mes "[オセロゲーム案内員]"; mes "ご案内いたします、こちらへどうぞ。"; close2; warp "knight_1-1.gat",99,71; end; } //========================================== // オセロ登録 //------------------------------------------ knight_1-1.gat,110,111,3 script タマゴ飼育係#Othello 125,{ switch('flag) { case 0: mes "[タマゴ飼育係]"; mes "プレイヤー登録"; next; if(select("登録する","やめる")==2) close; set 'player[1],getcharid(0); announce "オセロのプレイヤーに"+getcharname('player[1])+"さんが登録されました。",9; set 'flag,1; close; case 1: mes "[タマゴ飼育係]"; mes getcharname('player[1])+"さんに挑戦しますか?"; next; if(select("挑戦する","やめる")==2) close; set 'player[2],getcharid(0); announce "オセロの挑戦者に"+getcharname('player[2])+"さんが登録されました。",9; set 'flag,2; set $@Othello_Turn,1; initnpctimer; close; case 2: mes "[タマゴ飼育係]"; mes "ゲームをリセットされますか?"; next; if(select("ゲームリセット","やめる")==2) close; donpcevent "タマゴ飼育係#Othello::OnInit"; end; } OnTimer5000: announce (($@Othello_Turn == 1)? "プティット": "デリーター")+"側、"+getcharname(getvariableofnpc(getelementofarray('player,$@Othello_Turn),"タマゴ飼育係#Othello"))+"さんの番です!",9; end; OnTimer25000: initnpctimer; end; OnInit: setarray 'player[1],0,0; set 'flag,0; set $@Othello_Turn,0; set $@Othello_Rest,60; for(set '@i,1; '@i<=8; set '@i,'@i+1) { for(set '@j,1; '@j<=8; set '@j,'@j+1) { set $@Othello_Cell['@i]['@j],0; enablenpc "#Othello_"+'@i+"-"+'@j; enablenpc "タマゴ#Othello_"+'@i+"-"+'@j; disablenpc "プティット#Othello_"+'@i+"-"+'@j; disablenpc "デリーター#Othello_"+'@i+"-"+'@j; } } setarray $@Othello_Cell[4][4],1,2; setarray $@Othello_Cell[5][4],2,1; enablenpc "プティット#Othello_4-4"; enablenpc "プティット#Othello_5-5"; enablenpc "デリーター#Othello_4-5"; enablenpc "デリーター#Othello_5-4"; disablenpc "#Othello_4-4"; disablenpc "#Othello_4-5"; disablenpc "#Othello_5-4"; disablenpc "#Othello_5-5"; end; } //========================================== // タマゴ //------------------------------------------ knight_1-1.gat,92,107,0 script タマゴ#Othello_1-1 111,{ if(getvariableofnpc(getelementofarray('player,$@Othello_Turn),"タマゴ飼育係#Othello") != getcharid(0)) { mes "- 大きなタマゴがある -"; close; } for(set '@i,0; '@i<8; set '@i,'@i+1) { set '@x,strcut(strnpcinfo(2),10); set '@y,strcut(strnpcinfo(2),8); switch('@i) { case 0: set '@xc,0; set '@yc,-1; break; case 1: set '@xc,-1; set '@yc,-1; break; case 2: set '@xc,-1; set '@yc,0; break; case 3: set '@xc,-1; set '@yc,1; break; case 4: set '@xc,0; set '@yc,1; break; case 5: set '@xc,1; set '@yc,1; break; case 6: set '@xc,1; set '@yc,0; break; case 7: set '@xc,1; set '@yc,-1; break; } for(set '@j,0; '@j<8; set '@j,'@j+1) { set '@x,'@x+'@xc; set '@y,'@y+'@yc; if($@Othello_Cell['@y]['@x] == 0) break; if($@Othello_Cell['@y]['@x] == $@Othello_Turn) { if('@j) set '@check,1; break; } } if('@check) break; } if('@check == 0) { mes "- ここのタマゴは -"; mes "- 孵化させることができません。 -"; close; } mes "- ここのタマゴを孵化させますか? -"; next; if(select("孵化させる","別のタマゴにする")==2) close; set '@x,strcut(strnpcinfo(2),10); set '@y,strcut(strnpcinfo(2),8); disablenpc "#Othello_"+'@y+"-"+'@x; disablenpc "タマゴ#Othello_"+'@y+"-"+'@x; if($@Othello_Turn == 1) enablenpc "プティット#Othello_"+'@y+"-"+'@x; else enablenpc "デリーター#Othello_"+'@y+"-"+'@x; set $@Othello_Cell['@y]['@x],$@Othello_Turn; for(set '@i,0; '@i<8; set '@i,'@i+1) { set '@x,strcut(strnpcinfo(2),10); set '@y,strcut(strnpcinfo(2),8); switch('@i) { case 0: set '@xc,0; set '@yc,-1; break; case 1: set '@xc,-1; set '@yc,-1; break; case 2: set '@xc,-1; set '@yc,0; break; case 3: set '@xc,-1; set '@yc,1; break; case 4: set '@xc,0; set '@yc,1; break; case 5: set '@xc,1; set '@yc,1; break; case 6: set '@xc,1; set '@yc,0; break; case 7: set '@xc,1; set '@yc,-1; break; } for(set '@j,0; '@j<8; set '@j,'@j+1) { set '@x,'@x+'@xc; set '@y,'@y+'@yc; if($@Othello_Cell['@y]['@x] == 0) break; if($@Othello_Cell['@y]['@x] == $@Othello_Turn) { if('@j) { for(set '@j,'@j-1; '@j>=0; set '@j,'@j-1) { set '@x,'@x-'@xc; set '@y,'@y-'@yc; disablenpc "タマゴ#Othello_"+'@y+"-"+'@x; disablenpc "#Othello_"+'@y+"-"+'@x; set $@Othello_Cell['@y]['@x],$@Othello_Turn; if($@Othello_Turn == 1) { disablenpc "デリーター#Othello_"+'@y+"-"+'@x; enablenpc "プティット#Othello_"+'@y+"-"+'@x; misceffect 98,"プティット#Othello_"+'@y+"-"+'@x; } else { disablenpc "プティット#Othello_"+'@y+"-"+'@x; enablenpc "デリーター#Othello_"+'@y+"-"+'@x; misceffect 98,"デリーター#Othello_"+'@y+"-"+'@x; } } } break; } } } set $@Othello_Rest,$@Othello_Rest-1; if($@Othello_Rest == 0) { announce "終了です。お疲れ様でした。",9; stopnpctimer "タマゴ飼育係#Othello"; close; } if($@Othello_Turn == 1) set $@Othello_Turn,2; else set $@Othello_Turn,1; close; } knight_1-1.gat,94,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-2 111 knight_1-1.gat,96,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-3 111 knight_1-1.gat,98,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-4 111 knight_1-1.gat,100,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-5 111 knight_1-1.gat,102,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-6 111 knight_1-1.gat,104,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-7 111 knight_1-1.gat,106,107,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_1-8 111 knight_1-1.gat,92,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-1 111 knight_1-1.gat,94,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-2 111 knight_1-1.gat,96,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-3 111 knight_1-1.gat,98,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-4 111 knight_1-1.gat,100,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-5 111 knight_1-1.gat,102,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-6 111 knight_1-1.gat,104,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-7 111 knight_1-1.gat,106,105,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_2-8 111 knight_1-1.gat,92,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-1 111 knight_1-1.gat,94,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-2 111 knight_1-1.gat,96,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-3 111 knight_1-1.gat,98,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-4 111 knight_1-1.gat,100,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-5 111 knight_1-1.gat,102,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-6 111 knight_1-1.gat,104,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-7 111 knight_1-1.gat,106,103,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_3-8 111 knight_1-1.gat,92,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-1 111 knight_1-1.gat,94,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-2 111 knight_1-1.gat,96,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-3 111 knight_1-1.gat,102,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-6 111 knight_1-1.gat,104,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-7 111 knight_1-1.gat,106,101,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_4-8 111 knight_1-1.gat,92,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-1 111 knight_1-1.gat,94,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-2 111 knight_1-1.gat,96,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-3 111 knight_1-1.gat,102,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-6 111 knight_1-1.gat,104,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-7 111 knight_1-1.gat,106,99,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_5-8 111 knight_1-1.gat,92,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-1 111 knight_1-1.gat,94,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-2 111 knight_1-1.gat,96,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-3 111 knight_1-1.gat,98,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-4 111 knight_1-1.gat,100,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-5 111 knight_1-1.gat,102,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-6 111 knight_1-1.gat,104,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-7 111 knight_1-1.gat,106,97,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_6-8 111 knight_1-1.gat,92,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-1 111 knight_1-1.gat,94,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-2 111 knight_1-1.gat,96,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-3 111 knight_1-1.gat,98,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-4 111 knight_1-1.gat,100,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-5 111 knight_1-1.gat,102,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-6 111 knight_1-1.gat,104,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-7 111 knight_1-1.gat,106,95,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_7-8 111 knight_1-1.gat,92,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-1 111 knight_1-1.gat,94,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-2 111 knight_1-1.gat,96,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-3 111 knight_1-1.gat,98,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-4 111 knight_1-1.gat,100,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-5 111 knight_1-1.gat,102,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-6 111 knight_1-1.gat,104,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-7 111 knight_1-1.gat,106,93,0 duplicate(タマゴ#Othello_1-1) タマゴ#Othello_8-8 111 //========================================== // コマ //------------------------------------------ knight_1-1.gat,92,107,4 script #Othello_1-1 1721,{} knight_1-1.gat,92,107,4 script プティット#Othello_1-1 1155,{} knight_1-1.gat,92,107,4 script デリーター#Othello_1-1 1385,{} knight_1-1.gat,94,107,4 script #Othello_1-2 1721,{} knight_1-1.gat,94,107,4 script プティット#Othello_1-2 1155,{} knight_1-1.gat,94,107,4 script デリーター#Othello_1-2 1385,{} knight_1-1.gat,96,107,4 script #Othello_1-3 1721,{} knight_1-1.gat,96,107,4 script プティット#Othello_1-3 1155,{} knight_1-1.gat,96,107,4 script デリーター#Othello_1-3 1385,{} knight_1-1.gat,98,107,4 script #Othello_1-4 1721,{} knight_1-1.gat,98,107,4 script プティット#Othello_1-4 1155,{} knight_1-1.gat,98,107,4 script デリーター#Othello_1-4 1385,{} knight_1-1.gat,100,107,4 script #Othello_1-5 1721,{} knight_1-1.gat,100,107,4 script プティット#Othello_1-5 1155,{} knight_1-1.gat,100,107,4 script デリーター#Othello_1-5 1385,{} knight_1-1.gat,102,107,4 script #Othello_1-6 1721,{} knight_1-1.gat,102,107,4 script プティット#Othello_1-6 1155,{} knight_1-1.gat,102,107,4 script デリーター#Othello_1-6 1385,{} knight_1-1.gat,104,107,4 script #Othello_1-7 1721,{} knight_1-1.gat,104,107,4 script プティット#Othello_1-7 1155,{} knight_1-1.gat,104,107,4 script デリーター#Othello_1-7 1385,{} knight_1-1.gat,106,107,4 script #Othello_1-8 1721,{} knight_1-1.gat,106,107,4 script プティット#Othello_1-8 1155,{} knight_1-1.gat,106,107,4 script デリーター#Othello_1-8 1385,{} knight_1-1.gat,92,105,4 script #Othello_2-1 1721,{} knight_1-1.gat,92,105,4 script プティット#Othello_2-1 1155,{} knight_1-1.gat,92,105,4 script デリーター#Othello_2-1 1385,{} knight_1-1.gat,94,105,4 script #Othello_2-2 1721,{} knight_1-1.gat,94,105,4 script プティット#Othello_2-2 1155,{} knight_1-1.gat,94,105,4 script デリーター#Othello_2-2 1385,{} knight_1-1.gat,96,105,4 script #Othello_2-3 1721,{} knight_1-1.gat,96,105,4 script プティット#Othello_2-3 1155,{} knight_1-1.gat,96,105,4 script デリーター#Othello_2-3 1385,{} knight_1-1.gat,98,105,4 script #Othello_2-4 1721,{} knight_1-1.gat,98,105,4 script プティット#Othello_2-4 1155,{} knight_1-1.gat,98,105,4 script デリーター#Othello_2-4 1385,{} knight_1-1.gat,100,105,4 script #Othello_2-5 1721,{} knight_1-1.gat,100,105,4 script プティット#Othello_2-5 1155,{} knight_1-1.gat,100,105,4 script デリーター#Othello_2-5 1385,{} knight_1-1.gat,102,105,4 script #Othello_2-6 1721,{} knight_1-1.gat,102,105,4 script プティット#Othello_2-6 1155,{} knight_1-1.gat,102,105,4 script デリーター#Othello_2-6 1385,{} knight_1-1.gat,104,105,4 script #Othello_2-7 1721,{} knight_1-1.gat,104,105,4 script プティット#Othello_2-7 1155,{} knight_1-1.gat,104,105,4 script デリーター#Othello_2-7 1385,{} knight_1-1.gat,106,105,4 script #Othello_2-8 1721,{} knight_1-1.gat,106,105,4 script プティット#Othello_2-8 1155,{} knight_1-1.gat,106,105,4 script デリーター#Othello_2-8 1385,{} knight_1-1.gat,92,103,4 script #Othello_3-1 1721,{} knight_1-1.gat,92,103,4 script プティット#Othello_3-1 1155,{} knight_1-1.gat,92,103,4 script デリーター#Othello_3-1 1385,{} knight_1-1.gat,94,103,4 script #Othello_3-2 1721,{} knight_1-1.gat,94,103,4 script プティット#Othello_3-2 1155,{} knight_1-1.gat,94,103,4 script デリーター#Othello_3-2 1385,{} knight_1-1.gat,96,103,4 script #Othello_3-3 1721,{} knight_1-1.gat,96,103,4 script プティット#Othello_3-3 1155,{} knight_1-1.gat,96,103,4 script デリーター#Othello_3-3 1385,{} knight_1-1.gat,98,103,4 script #Othello_3-4 1721,{} knight_1-1.gat,98,103,4 script プティット#Othello_3-4 1155,{} knight_1-1.gat,98,103,4 script デリーター#Othello_3-4 1385,{} knight_1-1.gat,100,103,4 script #Othello_3-5 1721,{} knight_1-1.gat,100,103,4 script プティット#Othello_3-5 1155,{} knight_1-1.gat,100,103,4 script デリーター#Othello_3-5 1385,{} knight_1-1.gat,102,103,4 script #Othello_3-6 1721,{} knight_1-1.gat,102,103,4 script プティット#Othello_3-6 1155,{} knight_1-1.gat,102,103,4 script デリーター#Othello_3-6 1385,{} knight_1-1.gat,104,103,4 script #Othello_3-7 1721,{} knight_1-1.gat,104,103,4 script プティット#Othello_3-7 1155,{} knight_1-1.gat,104,103,4 script デリーター#Othello_3-7 1385,{} knight_1-1.gat,106,103,4 script #Othello_3-8 1721,{} knight_1-1.gat,106,103,4 script プティット#Othello_3-8 1155,{} knight_1-1.gat,106,103,4 script デリーター#Othello_3-8 1385,{} knight_1-1.gat,92,101,4 script #Othello_4-1 1721,{} knight_1-1.gat,92,101,4 script プティット#Othello_4-1 1155,{} knight_1-1.gat,92,101,4 script デリーター#Othello_4-1 1385,{} knight_1-1.gat,94,101,4 script #Othello_4-2 1721,{} knight_1-1.gat,94,101,4 script プティット#Othello_4-2 1155,{} knight_1-1.gat,94,101,4 script デリーター#Othello_4-2 1385,{} knight_1-1.gat,96,101,4 script #Othello_4-3 1721,{} knight_1-1.gat,96,101,4 script プティット#Othello_4-3 1155,{} knight_1-1.gat,96,101,4 script デリーター#Othello_4-3 1385,{} knight_1-1.gat,98,101,4 script #Othello_4-4 1721,{} knight_1-1.gat,98,101,4 script プティット#Othello_4-4 1155,{} knight_1-1.gat,98,101,4 script デリーター#Othello_4-4 1385,{} knight_1-1.gat,100,101,4 script #Othello_4-5 1721,{} knight_1-1.gat,100,101,4 script プティット#Othello_4-5 1155,{} knight_1-1.gat,100,101,4 script デリーター#Othello_4-5 1385,{} knight_1-1.gat,102,101,4 script #Othello_4-6 1721,{} knight_1-1.gat,102,101,4 script プティット#Othello_4-6 1155,{} knight_1-1.gat,102,101,4 script デリーター#Othello_4-6 1385,{} knight_1-1.gat,104,101,4 script #Othello_4-7 1721,{} knight_1-1.gat,104,101,4 script プティット#Othello_4-7 1155,{} knight_1-1.gat,104,101,4 script デリーター#Othello_4-7 1385,{} knight_1-1.gat,106,101,4 script #Othello_4-8 1721,{} knight_1-1.gat,106,101,4 script プティット#Othello_4-8 1155,{} knight_1-1.gat,106,101,4 script デリーター#Othello_4-8 1385,{} knight_1-1.gat,92,99,4 script #Othello_5-1 1721,{} knight_1-1.gat,92,99,4 script プティット#Othello_5-1 1155,{} knight_1-1.gat,92,99,4 script デリーター#Othello_5-1 1385,{} knight_1-1.gat,94,99,4 script #Othello_5-2 1721,{} knight_1-1.gat,94,99,4 script プティット#Othello_5-2 1155,{} knight_1-1.gat,94,99,4 script デリーター#Othello_5-2 1385,{} knight_1-1.gat,96,99,4 script #Othello_5-3 1721,{} knight_1-1.gat,96,99,4 script プティット#Othello_5-3 1155,{} knight_1-1.gat,96,99,4 script デリーター#Othello_5-3 1385,{} knight_1-1.gat,98,99,4 script #Othello_5-4 1721,{} knight_1-1.gat,98,99,4 script プティット#Othello_5-4 1155,{} knight_1-1.gat,98,99,4 script デリーター#Othello_5-4 1385,{} knight_1-1.gat,100,99,4 script #Othello_5-5 1721,{} knight_1-1.gat,100,99,4 script プティット#Othello_5-5 1155,{} knight_1-1.gat,100,99,4 script デリーター#Othello_5-5 1385,{} knight_1-1.gat,102,99,4 script #Othello_5-6 1721,{} knight_1-1.gat,102,99,4 script プティット#Othello_5-6 1155,{} knight_1-1.gat,102,99,4 script デリーター#Othello_5-6 1385,{} knight_1-1.gat,104,99,4 script #Othello_5-7 1721,{} knight_1-1.gat,104,99,4 script プティット#Othello_5-7 1155,{} knight_1-1.gat,104,99,4 script デリーター#Othello_5-7 1385,{} knight_1-1.gat,106,99,4 script #Othello_5-8 1721,{} knight_1-1.gat,106,99,4 script プティット#Othello_5-8 1155,{} knight_1-1.gat,106,99,4 script デリーター#Othello_5-8 1385,{} knight_1-1.gat,92,97,4 script #Othello_6-1 1721,{} knight_1-1.gat,92,97,4 script プティット#Othello_6-1 1155,{} knight_1-1.gat,92,97,4 script デリーター#Othello_6-1 1385,{} knight_1-1.gat,94,97,4 script #Othello_6-2 1721,{} knight_1-1.gat,94,97,4 script プティット#Othello_6-2 1155,{} knight_1-1.gat,94,97,4 script デリーター#Othello_6-2 1385,{} knight_1-1.gat,96,97,4 script #Othello_6-3 1721,{} knight_1-1.gat,96,97,4 script プティット#Othello_6-3 1155,{} knight_1-1.gat,96,97,4 script デリーター#Othello_6-3 1385,{} knight_1-1.gat,98,97,4 script #Othello_6-4 1721,{} knight_1-1.gat,98,97,4 script プティット#Othello_6-4 1155,{} knight_1-1.gat,98,97,4 script デリーター#Othello_6-4 1385,{} knight_1-1.gat,100,97,4 script #Othello_6-5 1721,{} knight_1-1.gat,100,97,4 script プティット#Othello_6-5 1155,{} knight_1-1.gat,100,97,4 script デリーター#Othello_6-5 1385,{} knight_1-1.gat,102,97,4 script #Othello_6-6 1721,{} knight_1-1.gat,102,97,4 script プティット#Othello_6-6 1155,{} knight_1-1.gat,102,97,4 script デリーター#Othello_6-6 1385,{} knight_1-1.gat,104,97,4 script #Othello_6-7 1721,{} knight_1-1.gat,104,97,4 script プティット#Othello_6-7 1155,{} knight_1-1.gat,104,97,4 script デリーター#Othello_6-7 1385,{} knight_1-1.gat,106,97,4 script #Othello_6-8 1721,{} knight_1-1.gat,106,97,4 script プティット#Othello_6-8 1155,{} knight_1-1.gat,106,97,4 script デリーター#Othello_6-8 1385,{} knight_1-1.gat,92,95,4 script #Othello_7-1 1721,{} knight_1-1.gat,92,95,4 script プティット#Othello_7-1 1155,{} knight_1-1.gat,92,95,4 script デリーター#Othello_7-1 1385,{} knight_1-1.gat,94,95,4 script #Othello_7-2 1721,{} knight_1-1.gat,94,95,4 script プティット#Othello_7-2 1155,{} knight_1-1.gat,94,95,4 script デリーター#Othello_7-2 1385,{} knight_1-1.gat,96,95,4 script #Othello_7-3 1721,{} knight_1-1.gat,96,95,4 script プティット#Othello_7-3 1155,{} knight_1-1.gat,96,95,4 script デリーター#Othello_7-3 1385,{} knight_1-1.gat,98,95,4 script #Othello_7-4 1721,{} knight_1-1.gat,98,95,4 script プティット#Othello_7-4 1155,{} knight_1-1.gat,98,95,4 script デリーター#Othello_7-4 1385,{} knight_1-1.gat,100,95,4 script #Othello_7-5 1721,{} knight_1-1.gat,100,95,4 script プティット#Othello_7-5 1155,{} knight_1-1.gat,100,95,4 script デリーター#Othello_7-5 1385,{} knight_1-1.gat,102,95,4 script #Othello_7-6 1721,{} knight_1-1.gat,102,95,4 script プティット#Othello_7-6 1155,{} knight_1-1.gat,102,95,4 script デリーター#Othello_7-6 1385,{} knight_1-1.gat,104,95,4 script #Othello_7-7 1721,{} knight_1-1.gat,104,95,4 script プティット#Othello_7-7 1155,{} knight_1-1.gat,104,95,4 script デリーター#Othello_7-7 1385,{} knight_1-1.gat,106,95,4 script #Othello_7-8 1721,{} knight_1-1.gat,106,95,4 script プティット#Othello_7-8 1155,{} knight_1-1.gat,106,95,4 script デリーター#Othello_7-8 1385,{} knight_1-1.gat,92,93,4 script #Othello_8-1 1721,{} knight_1-1.gat,92,93,4 script プティット#Othello_8-1 1155,{} knight_1-1.gat,92,93,4 script デリーター#Othello_8-1 1385,{} knight_1-1.gat,94,93,4 script #Othello_8-2 1721,{} knight_1-1.gat,94,93,4 script プティット#Othello_8-2 1155,{} knight_1-1.gat,94,93,4 script デリーター#Othello_8-2 1385,{} knight_1-1.gat,96,93,4 script #Othello_8-3 1721,{} knight_1-1.gat,96,93,4 script プティット#Othello_8-3 1155,{} knight_1-1.gat,96,93,4 script デリーター#Othello_8-3 1385,{} knight_1-1.gat,98,93,4 script #Othello_8-4 1721,{} knight_1-1.gat,98,93,4 script プティット#Othello_8-4 1155,{} knight_1-1.gat,98,93,4 script デリーター#Othello_8-4 1385,{} knight_1-1.gat,100,93,4 script #Othello_8-5 1721,{} knight_1-1.gat,100,93,4 script プティット#Othello_8-5 1155,{} knight_1-1.gat,100,93,4 script デリーター#Othello_8-5 1385,{} knight_1-1.gat,102,93,4 script #Othello_8-6 1721,{} knight_1-1.gat,102,93,4 script プティット#Othello_8-6 1155,{} knight_1-1.gat,102,93,4 script デリーター#Othello_8-6 1385,{} knight_1-1.gat,104,93,4 script #Othello_8-7 1721,{} knight_1-1.gat,104,93,4 script プティット#Othello_8-7 1155,{} knight_1-1.gat,104,93,4 script デリーター#Othello_8-7 1385,{} knight_1-1.gat,106,93,4 script #Othello_8-8 1721,{} knight_1-1.gat,106,93,4 script プティット#Othello_8-8 1155,{} knight_1-1.gat,106,93,4 script デリーター#Othello_8-8 1385,{}