Condition_TrialCount
Description
Checks the number of times the BaseObject character has been on trial.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | The character whose trial count will be checked |
| CompareType | Equal, NotEqual, Greater, GreaterOrEqual, Less, LessOrEqual, InRange, OutRange |
| F1 | Trial count to compare against |
| F2 | Upper bound for range comparisons (InRange, OutRange) |
Examples
| Description | BaseObject | Command | CompareType | F1 | F2 |
|---|---|---|---|---|---|
| Check if Self has been on trial at least once | Self | TrialCount | GreaterOrEqual | 1 | |
| Check if Self has never been on trial | Self | TrialCount | Equal | 0 | |
| Check if Self has been on trial between 1 and 3 times | Self | TrialCount | InRange | 1 | 3 |