- Joined
- Jan 14, 2021
- Messages
- 11
- Reaction score
- 2
- First Language
- Islandic
- Primarily Uses
- RMMV
Hey, I'm using this plugin.
www.yanfly.moe
It has this entry
If the enemy level is too low, he can't use X skill?
Please help
Enemy Levels (YEP) - Yanfly.moe Wiki

How do I make a condition for the skill with this?Here are some new JavaScript functions that have been added by this plugin.
enemy.level
- This will return the enemy's current level.
If the enemy level is too low, he can't use X skill?
<Custom Requirement>
if (user.isEnemy()) {
value = ???
}
</Custom Requirement>
Please help