- Joined
- Mar 31, 2016
- Messages
- 12
- Reaction score
- 0
- First Language
- English
- Primarily Uses
I'm using Yanfly's SkillCore plugin and I have just one function I need that I'm not sure how to achieve. This is the example that the plugin's help file gives:
I have the plugin "SkillCostsItems" and now I just want to make sure that the skills you can't afford aren't shown in your skill list. This seems like it will be the solution, so I just need another variable than "user.level" to reflect on an individual item instead. Appreciate any and all help!
For those who would like to show certain skills and disable them under any
custom conditions using their JavaScript knowledge, use the following:
Skill Notetag:
<Custom Show Eval>
if (user.level > 50) {
visible = true;
} else {
visible = false;
}
I have the plugin "SkillCostsItems" and now I just want to make sure that the skills you can't afford aren't shown in your skill list. This seems like it will be the solution, so I just need another variable than "user.level" to reflect on an individual item instead. Appreciate any and all help!


