質問:称号所持分岐で、パーティ全員がいずれかのクーポンを所有している場合

Issue #617 resolved
Former user created an issue

次の結果が2人以上のパーティで常に失敗するのは、仕様なのでしょうか?

#!

brcoupon T, "_1" "_2" "_3" "_4" "_5" "_6", or
if true
    msg none, "TRUE", 1, false, false, false
elif false
    msg none, "FALSE", 1, false, false, false
fi

Comments (2)

  1. k4nagatsuki repo owner

    クーポン所持分岐で複数のクーポンを指定した時の結果は、単一の指定を複数繰り返した結果と同じ結果になります。

    つまり以下と同様になります。

    brcoupon T, "_1"
    if true
    brcoupon T, "_2"
    sif true
    brcoupon T, "_3"
    sif true
    brcoupon T, "_4"
    sif true
    brcoupon T, "_5"
    sif true
    brcoupon T, "_6"
    sif true
    msg none, "TRUE"
    

    結果はTRUEになりません。

    これが最初に意図した仕様でよかったんだろうか……? その点にちょっと自信が無いですが、現状の仕様はそうなっています。

  2. Log in to comment