- Joined
- Sep 14, 2016
- Messages
- 392
- Reaction score
- 76
- First Language
- English
- Primarily Uses
Yanfly's Skill Core lets you use custom notetags to show skills. Here's their sample code:
<Custom Show Eval>
if (user.level > 50) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
How do I change this to check for a specific class or subclass? Since subclass has to reference another plugin, I can work with just using the class.
I tried this but it didn't work:
<Custom Show Eval>
if (user.level > 50) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
How do I change this to check for a specific class or subclass? Since subclass has to reference another plugin, I can work with just using the class.
I tried this but it didn't work:
Code:
<Custom Show Eval>
if (user.class = 4) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
