- Joined
- Sep 26, 2019
- Messages
- 41
- Reaction score
- 14
- First Language
- German
- Primarily Uses
- RMMV
i used this codes as custom passive conditions for the yep auto passive states
but because i am using the $ prefix i get a lot of errors. is there a way to do the same with lunatic mode?
Code:
<Custom Passive Condition>
if ($gameActors.actor(1).isStateAffected(1) && !$gameActors.actor(1).isStateAffected(16) && $gameSwitches.value(10) == true) {
condition = true;
} else {
condition = false;
}
</Custom Passive Condition>
Code:
<Custom Passive Condition>
if ($gameActors.actor(2).isStateAffected(1) && $gameSwitches.value(10) == true) {
condition = true;
} else {
condition = false;
}
</Custom Passive Condition>


