- May 17, 2020
- 213
- 584
So this game has a massive grind issue once you get to a certain point not even that far in. To fix it I made the EXP rewards way higher so I can level up faster. In rpg_manager.js find the BattleManager.makeRewards function and change it like this (I just commented out for easy revert later if I want to). I set it to be 10000 but you could make it higher or lower.
Alternatively do something like this for a 10x multiplier and it should maybe scale better for the entire game?
Code:
BattleManager.makeRewards = function() {
this._rewards = {};
this._rewards.gold = $gameTroop.goldTotal();
this._rewards.exp = 10000;//$gameTroop.expTotal();
this._rewards.items = $gameTroop.makeDropItems();
};
Code:
BattleManager.makeRewards = function() {
this._rewards = {};
this._rewards.gold = $gameTroop.goldTotal();
this._rewards.exp = 10 * $gameTroop.expTotal();
this._rewards.items = $gameTroop.makeDropItems();
};
Last edited: