Condition_PerspectivePoint
Description
Compares the point value of the specified perspective (S1) for the character against F1 using the given
CompareType. Supports range comparisons using F2 as the upper bound.
Parameters
| Parameter | Description |
|---|
| BaseObject | The character whose perspective value will be checked. |
| CompareType | Comparison operation type. Supports InRange and OutRange. |
| S1 | The perspective name to check. |
| F1 | The perspective point value to compare against. |
| F2 | The upper bound value used for range comparisons (InRange, OutRange). |
Examples
| Description | BaseObject | Command | CompareType | S1 | F1 | F2 |
|---|
| Check if Conservation perspective is greater than or equal to 60 | Self | PerspectivePoint | GreaterOrEqual | Conservation | 60.0 | |
| Check if Conservation perspective is between 30 and 60 | Self | PerspectivePoint | InRange | Conservation | 30.0 | 60.0 |
| Check if Freedom perspective is less than 20 | Self | PerspectivePoint | Less | Freedom | 20.0 | |