← Return to tool
Log in with itch.io to leave a comment.
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
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 ?
Is your licenses.json coming from making a map or creating the file from scratch.I think the map maker just has the terms hardcoded at present.So you have two options:1) edit Licenses.json to change the descriptions manually (find and replace might work)2) edit mapConvert.html (line ~87 where LicenseMap is defined), and fix the default descriptions to the terms you are using for your game.
there aren't any 'license board maker' or tileset files included in this.I made my own A5 tileset simply enough but I can't even search for 'Gimmer License Board Maker' to get a link to the .json converter
My bad, it's a separate section of my github. Forgot to put it into the zip.https://github.com/gimmer/RPG-Maker-MV-Plugins/tree/master/Utilities/LicenseBoar...
Grab it and the instructions here
← Return to tool
Comments
Log in with itch.io to leave a comment.
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 ?
Is your licenses.json coming from making a map or creating the file from scratch.
I think the map maker just has the terms hardcoded at present.
So you have two options:
1) edit Licenses.json to change the descriptions manually (find and replace might work)
2) edit mapConvert.html (line ~87 where LicenseMap is defined), and fix the default descriptions to the terms you are using for your game.
there aren't any 'license board maker' or tileset files included in this.
I made my own A5 tileset simply enough but I can't even search for 'Gimmer License Board Maker' to get a link to the .json converter
My bad, it's a separate section of my github. Forgot to put it into the zip.
https://github.com/gimmer/RPG-Maker-MV-Plugins/tree/master/Utilities/LicenseBoar...
Grab it and the instructions here