I have finally finished my custom scenes. Yay! All by myself, but I have one problem. In my custom equip scene, it displays the normal equipment names. The problems is, I have custom equipment names. How do I get it to show the custom equipment names?
Here is my code snippet:
Here is my code snippet:
Window_Status.prototype.drawEquipments = function(x, y) {
var equips = this._actor.equips();
var count = Math.min(equips.length, this.maxEquipmentLines());
for (var i = 0; i < count; i++) {
this.drawItemName(equips[index], x, y + this.lineHeight() * i);
}
};
var equips = this._actor.equips();
var count = Math.min(equips.length, this.maxEquipmentLines());
for (var i = 0; i < count; i++) {
this.drawItemName(equips[index], x, y + this.lineHeight() * i);
}
};