- Joined
- Feb 22, 2016
- Messages
- 1,626
- Reaction score
- 1,196
- First Language
- English
- Primarily Uses
- RMMV
So I'm implementing a custom passive case for this plugin (the lunatic mode added before the following)
// -------------------------------
// Add new effects above this line
// -------------------------------
I wanted to ask if my code was correct since I was mostly just following the provided syntax...
So in the state notebox I would put:
Correct?
// -------------------------------
// Add new effects above this line
// -------------------------------
I wanted to ask if my code was correct since I was mostly just following the provided syntax...
Code:
} else if (data.match(/ONE[ ]HANDED)) {
if (user.isActor()) {
condition = !user.equips()[1];
} else {
condition = false;
}
JavaScript:
<Passive Condition Cases>
One Handed
</Passive Condition Cases>
