LoginSignup
0
1

More than 5 years have passed since last update.

【AnotherNewGame】カスタマイズ覚書

Last updated at Posted at 2017-05-29

データロード時のメッセージを専用のものにしたい

AnotherNewGame.jsの下部に追加する。

AnotherNewGame.js
    Scene_Load.prototype.helpWindowText = function() {
        if (localExtraStage === true) {
            return "\\C[5]【強いままニューゲーム】\\C[0]の対象セーブデータを選んでください。";
        } else {
            return TextManager.loadMessage;
        }
    };

通常ロード呼び出し時
sshot 1.jpg

アナザー呼び出し時
sshot.jpg

localExtraStageがtrueの時に、アナザーニューゲームから呼び出しているので、通常ロードと分岐。
※日本語を含む時はUTF-8(BOM無し)で保存する事を忘れずに。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1