<li><strong>default</strong>:<br />
<strong>Description</strong>: A Default MathOperation that just returns true or false<br />
<strong>Parameters</strong>:<br />
<strong>"value"</strong>: (Which value should be returned) Boolean,<br />
<br />
</li><li><strong>array</strong>:<br />
<strong>Description</strong>: Allows to combine Math Operations together.<br />
<strong>Parameters</strong>:<br />
<strong>"operations"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Operation) Registry Element,<br />
<br />
</li><li><strong>equals</strong>:<br />
<strong>Description</strong>: Checks if the Input Value equals the Selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>equalsNot</strong>:<br />
<strong>Description</strong>: Checks if the InputValue doesn't match with selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>bigger</strong>:<br />
<strong>Description</strong>: Checks if the Input Value is bigger then the selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>biggerEquals</strong>:<br />
<strong>Description</strong>: Checks if the Input Value is bigger or equals the selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>smaller</strong>:<br />
<strong>Description</strong>: Checks if the Input Value is smaller then the Selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>smallerEquals</strong>:<br />
<strong>Description</strong>: Checks if the Input Values is smaller then or equals the Selected Value<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"value"</strong>: (The Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>inRange</strong>:<br />
<strong>Description</strong>: Checks if the Input Value is in range of the Input Values<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"minValue"</strong>: (The Minimum Value the Operation should compare with) LongNumber,<br />
<strong>"maxValue"</strong>: (The Maximum Value the Operation should compare with) LongNumber,<br />
<br />
</li><li><strong>notInRange</strong>:<br />
<strong>Description</strong>: Checks if the Input Value is outside of the Range of the Selected Values<br />
<strong>Parameters</strong>:<br />
<strong>"modifiers"</strong>: (It can be either a Object or a ObjectArray) OptionalObjectArray,<br />
   <strong>"type"</strong>: (RegistryName for the Math Modifier) Registry Element,<br />
<strong>"minValue"</strong>: (The Minimum Value the Operation should compare with) LongNumber,<br />
<strong>"maxValue"</strong>: (The Maximum Value the Operation should compare with) LongNumber,<br />
<br />
</li>