Gimmer_LicenseBoard
A downloadable tool
Have you ever wanted a different kind of leveling up system in your RPG? Maybe one similar to Final Fantasy XII where you have a board you can navigate with each character, deciding where exactly you wish each one to excel? Well, Gimmer_LicenseBoard does just that.
Some requirements for this plugin include the script file (of course!), a 64x64px LicenseIconSet (one is included by default, feel free to change it), a LargeLicenseIconSet (icons at 170x170) for if you wish to have a success window once a skill has been chosen. This can again be changed to your own design/theme if you so desire.
The other file included here: 'LicenseBoardMaker' is required to actually build the board itself. Documentation is also included in this archive.
There is a healthy amount of setup to get the License Board working the way you want, so please read the documentation included in the README, carefully.
Reminder: Gimmer_Core.js is required for this plugin to function. You can download that here.
Video Tutorial:
--
Documentation and more information is included in the README file.
Free for both commercial and non-commercial use, with credit.
Credit: codapill, for graphical assets provided.
Credit: xiamumomo, for graphic assets provided
- Gimmer
Status | Released |
Category | Tool |
Author | gimmer |
Tags | javascript, jobsystem, license, licenseboard, plugin, RPG Maker, RPG Maker MV, scripting |
Download
Click download now to get access to the following files:
Development log
- Version 2.1.1 - Max LP and Preliminary Mouse SupportJan 27, 2022
- Version 2.1 - Change Tag LocationJan 17, 2022
- Version 2.0 - Exp and Licenses side by side!Dec 23, 2021
- Version 1.5.2 - Bugfixes and dynamic costs!Dec 23, 2021
- Version 1.4, MapConverter 1.2Oct 21, 2021
- Version 1.3Apr 13, 2021
- Version 1.2 (mapConverter 1.1)Apr 13, 2021
- Version 1.1Jan 22, 2021
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