メニューを表示する(2)


menu "バナナ","マンゴー","\x01","ハイスクール";

if( result == 0 ) {
    endmacro;
}else if ( result == 1 ) {
   message "バナナ";
}else if ( result == 2 ) {
    message "マンゴー";
}else if ( result == 4 ) {
    message "ハイスクール";
}

menuは、表示する文字列を引数に指定する。配列を使わないから、menuarrayより簡単っちゃ簡単。判定の仕方や結果は、menuarrayと同じ。