B1WorldMissionChecker
- Runtime checker for an entire world mission, aggregating condition checkers and tracking overall progress.
* Stores mission metadata such as repeat settings and check type alongside its condition checkers.
| Property | Type | Description | Metadata |
|---|---|---|---|
| MissionId | FB1MissionId | Runtime identifier of the world mission being tracked. | |
| MissionDtId | FName | Data table row ID of this world mission definition. | |
| bIsRepeat | bool | Whether this world mission repeats after completion. | |
| RepeatCount | int32 | Maximum number of times this world mission can repeat. | |
| CheckType | EB1WorldMissionCheckType | Scope at which this world mission is evaluated (Character, Family, or World). | |
| MissionConditions | TArray | Array of per-condition checkers tracking individual condition progress. |