Found a way to fix repaying debt.
1. Go to www\js\rpg_objects.js
2. Replace
JavaScript:
Game_Message.prototype.initialize = function() {
this.clear();
};
to
JavaScript:
Game_Message.prototype.initialize = function() {
this.clear();
this._numInputBackground = 0;
this._numInputPositionType = 1;
this._numInputValidDigit = 1;
this.clearNumInputRange();
};
Game_Message.prototype.clearNumInputRange = function() {
this._numInputMaxValue = Infinity;
this._numInputMinValue = -Infinity;
this._numInputValidDigit = 1;
};
Game_Message.prototype.setNumInputRange = function(min, max) {
this._numInputMaxValue = max;
this._numInputMinValue = min;
};
Game_Message.prototype.setNumInputBackground = function(background) {
this._numInputBackground = background;
};
Game_Message.prototype.setNumInputPositionType = function(positionType) {
this._numInputPositionType = positionType;
};
Game_Message.prototype.numInputBackground = function() {
return this._numInputBackground;
};
Game_Message.prototype.numInputPositionType = function() {
return this._numInputPositionType;
};
And you will be able to repay debt. Don't know if there any other issues. Because I played a little bit more and lost interest