Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
1-Easy but heavily repetitive and boring, add this Notetag for each skill:
<Learn Show Eval>
value = !user._skills.includes(skill.id)
</Learn Show Eval>
2-To apply to all the skills at once:
With a little JS knowledge, in the YEP_SkillLearnSystem, you can look for this code
Window_SkillLearn.prototype.meetsRequirements = function(skill) {
var evalValue = this.getEvalLine(skill.learnShowEval);
if (evalValue !== undefined) return evalValue;
.... More code lines ....
return true;
};
And add last line:
Window_SkillLearn.prototype.meetsRequirements = function(skill) {
var evalValue = this.getEvalLine(skill.learnShowEval);
if (evalValue !== undefined) return evalValue;
if(this._actor._skills.includes( skill.id )) return false;
.... More code lines ....
return true;
};
Keep in mind when modifying the js file, to save a backup copy before the edition because you can cause errors or nasty side effects for minimal changes.
Ill be trying this out for sure.