Condition_PlayingAmbition
Description
Checks the currently in-progress ambition of the specified entity. When F1 is greater
than 0, also verifies that the ambition's current step matches F1. Supports Equal and
NotEqual comparisons only.
Parameters
| Parameter | Description |
|---|
| BaseObject | The entity to check (Self or Target). |
| CompareType | Comparison operator (Equal, NotEqual). |
| S1 | Ambition item ID that is expected to be in progress (e.g., Rich, Voice). |
| F1 | Expected ambition step (0 means step is ignored; otherwise must match). |
Examples
| Description | BaseObject | Command | CompareType | S1 | F1 |
|---|
| Check if self's current ambition is Rich | Self | PlayingAmbition | Equal | Rich | 0 |
| Check if self's current ambition is Rich at step 2 | Self | PlayingAmbition | Equal | Rich | 2 |
| Check if self's current ambition is NOT Voice | Self | PlayingAmbition | NotEqual | Voice | 0 |
| Check if self's current ambition is Voice at step 3 | Self | PlayingAmbition | Equal | Voice | 3 |