Hello author
I am a recently purchased user
I want to use it in my game
But got stuck
Want to ask you
//Refresh the help window
Window_LicenseHelp.prototype.refresh = function() {
this.contents.clear();
if(this._licenseVisible){
let lpShort = Gimmer_Core.LicenseBoard.PointsLabelShort;
let lpString = "Current "+lpShort+": "+(this._actor.getExp().toString() || "0");
let lpWidth = this.textWidth(lpString)
this.drawText(this._license.description, this.textPadding(), 0, this.width-lpWidth);
//(this._license.description, this.textPadding(), 0, this.width-lpWidth);
if(this._actor){
this.drawText(""+lpShort+": "+(this._actor.getExp().toString() || "0"),0,this.lineHeight(),this.width-lpWidth,'right');
if(!this._actor.canAffordLicense(this._license)) {
this.contents.textColor ='#FF0000';
}
this.drawText("Energy consumption: "+this._license.cost ,this.textPadding(), this.lineHeight());
}
this.resetTextColor();
}
};
In this content
this.drawText(this._license.description, this.textPadding(), 0, this.width-lpWidth);
Is used to show the ability added by our talent
Due to language issues, I need to modify the content it displays
For example: HP changed to physical strength
How should I modify it ?