<Custom Requirement>
if ($gameParty.gold() > 1000) {
value = true;
} else {
value = false;
}
</Custom Requirement>
if ($gameParty.gold() > 1000) {
value = true;
} else {
value = false;
}
</Custom Requirement>
What I would like to do is have the skill be disabled if all of the active battle party members have specific states (the highest tiers of the buffs). So let's say the skill raises 'offensive parameters' (both the ATK and M.ATK parameters). The custom requirement would be that if all the active party members in battle have the max tier states for both ATK and M.ATK, the skill in question should be disabled.
Would anyone know how to write the syntax for this?