Description
Checks whether the character is wearing a costume that has the specified tag in its CostumeTags.
If S2 is "All", checks all outfit slots; otherwise checks only the last (most recently applied) outfit slot.
Parameters
| Parameter | Description |
|---|
| BaseObject | The character to check (Self or Target). |
| CompareType | Supported compare types: Equal, NotEqual. |
| S1 | Costume tag to look for in Costume.CostumeTags (e.g. "MannequinTryOn", "Swimwear"). |
| S2 | Scope of check: "All" to check all outfit slots, omit or leave empty for last slot. |
Examples
| Description | BaseObject | Command | CompareType | S1 | S2 |
|---|
| Checks if self is currently wearing a mannequin try-on costume. | Self | CostumeTag | Equal | MannequinTryOn | |
| Checks if self has any swimwear-tagged costume in any slot. | Self | CostumeTag | Equal | Swimwear | All |
| Checks if self is not currently wearing a mannequin try-on costume. | Self | CostumeTag | NotEqual | MannequinTryOn | |
| Checks if target has no event costume in any slot. | Target | CostumeTag | NotEqual | EventCostume | All |