Code:
Window_StatusParams.prototype.maxItems = function() {
return 5;
};
// Drawing parameters such as attack power
Window_SrpgStatus.prototype.drawParameters = function(x, y) {
var lineHeight = this.lineHeight();
for (var i = 0; i < 5; i++) { // Edited
var paramId = i + 2;
var x2 = x + 188 * (i % 2);
var y2 = y + lineHeight * Math.floor(i / 2);
this.changeTextColor(ColorManager.systemColor());
this.drawText(TextManager.param(paramId), x2, y2, 120);
this.resetTextColor();
this.drawText(this._battler.param(paramId), x2 + 120, y2, 48, 'right');
}
};I've been able to remove the appearance of the "Luck" stat from the Status Menu, and from playing a role in combat. However, it still seems to be appearing on the Equip Screen. And I can find no such relevant "Params" option or "return" option where Equip is concerned.
Would anyone know what piece of code it is I need to be altering?
View attachment 269702