How can I make it so you can escape fights 100% of the time?

● ARCHIVED · READ-ONLY
Started by Weg 3 posts View original ↗
  1. I'm just trying to have as much QoL in my game as possible, and part of that is being able to run from fights with no risk. How can I do this in RPG Maker?
  2. Did you try searching for it? I Googled "rpg maker mv always escape" and several threads and a plugin pop right up :wink:

    But it's a simple enough change - just paste the below in a text editor, save as a *.js file, include as a plugin:
    Code:
    BattleManager.makeEscapeRatio = function() {
        this._escapeRatio = 1;
    };
  3. ATT_Turan said:
    Did you try searching for it? I Googled "rpg maker mv always escape" and several threads and a plugin pop right up :wink:

    But it's a simple enough change - just paste the below in a text editor, save as a *.js file, include as a plugin:
    Code:
    BattleManager.makeEscapeRatio = function() {
        this._escapeRatio = 1;
    };
    i tried googling it but i guess i couldn't really phrase it in a way that would give me the solution I needed, thank you anyways!