- Joined
- Aug 18, 2012
- Messages
- 1,933
- Reaction score
- 1,326
- First Language
- English
- Primarily Uses
- RMMV
Hey everyone, I'm trying to expand upon one of the custom codes for Yanfly's Skill Core plugin. So far when you want a skill to be shown when an actor is a certain level you use this:
<Custom Show Eval>
if (user.level > 10) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
What I want to do is only show the skill when the actor is between certain levels. Like if the actor is between level 10 and 20 then the skill is shown. If not then the skill is not shown. Can anyone help me out with this?
<Custom Show Eval>
if (user.level > 10) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
What I want to do is only show the skill when the actor is between certain levels. Like if the actor is between level 10 and 20 then the skill is shown. If not then the skill is not shown. Can anyone help me out with this?
