class Scene_Riversi < Scene_MenuBase #-------------------------------------------------------------------------- # ● 文章の表示 #-------------------------------------------------------------------------- def reversi_message(face_name,face_index,position,index,type = 0) $game_message.face_name = face_name $game_message.face_index = face_index $game_message.position = position if type == 0 # 文章データ $game_message.add(@list[index]) end end #●文章のセット def result_message_txt numw = number_stone(1) numb = number_stone(2) resulttxt = sprintf("勝負結果 \n黒%s個、白%s個 ",numw , numb) @list[0] = resulttxt end end