2022年12月31日
条件分岐-スクリプトで1行で成否判定をする
条件分岐-スクリプトで1行で成否判定をする
シンプルで簡単な実装方法です。
Math.random() > 1-失敗率;
例.
成功率50%:Math.random() > 0.5;
成功率77%:Math.random() > 0.23;
応用:変数を使った成功率の補正
例.
50%の成功率+変数6番の値が1上がるたびに1%成功率が上がる
Math.random() > 0.5-($gameVariables.value(6)/100);
シンプルで簡単な実装方法です。
Math.random() > 1-失敗率;
例.
成功率50%:Math.random() > 0.5;
成功率77%:Math.random() > 0.23;
応用:変数を使った成功率の補正
例.
50%の成功率+変数6番の値が1上がるたびに1%成功率が上がる
Math.random() > 0.5-($gameVariables.value(6)/100);
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
posted by tabirpglab at 14:00
| JavaScript/スクリプト(ツクールMV)