Condition_IsCraftingObjectFinished
Description
Checks whether the BaseObject craft object's crafting progress has reached 100% (finished). Uses B2CraftingHelper::TryGetCraftingProgress to retrieve the current progress value from the craft object's GameObjectStatComponent. Intended for use with inventory bag interactions where the picked craft object is passed as Target.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | The craft object entity to check progress on (typically Target) |
| CompareType | Equal: finished (progress >= 100%); NotEqual: not finished (progress < 100%) |
Examples
| Description | BaseObject | Command | CompareType |
|---|---|---|---|
| Is the picked craft object finished? | Target | IsCraftingObjectFinished | Equal |
| Is the picked craft object still in progress? | Target | IsCraftingObjectFinished | NotEqual |
Back to Command FinderSearch and filter all 491 Script Condition documents