Remove "was defeated" message

● ARCHIVED · READ-ONLY
Started by ---ytruuytr 4 posts View original ↗
  1. Well, that's the question. Is there a simple way to redirect to game over without displaying the said message?
    thanks!
  2. you can edit the message under terms in the database, but you'll need a plugin to completely remove it.
  3. You can edit the processdefeat function in the rpg_managers.js file.

    Comment out the this.displayDefeatMessage(); so it looks like this:

    Code:
    BattleManager.processDefeat = function() {
        //this.displayDefeatMessage();
        this.playDefeatMe();
        if (this._canLose) {
            this.replayBgmAndBgs();
        } else {
            AudioManager.stopBgm();
        }
        this.endBattle(2);
    };
  4. @shukiri , please refrain from necro-posting in a thread. Necro-posting is posting in a thread that has not had posting activity in over 30 days. You can review our forum rules here. Thank you.


    Also, it is never recommended to directly edit the default plugins. We always suggest to overwrite the default functions in another third party plugin.

    I'm closing this thread.