Description
Checks whether the character has an outfit of the specified category equipped. 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 | Outfit category name to check (e.g. "Casual", "Formal", "Sport"). |
| S2 | Scope of check: "All" to check all outfit slots, omit or leave empty for last slot only. |
Examples
| Description | BaseObject | Command | CompareType | S1 | S2 |
|---|
| Checks if self has a Casual outfit in any slot. | Self | OutfitCategory | Equal | Casual | All |
| Checks if self does not have a Formal outfit in the last slot. | Self | OutfitCategory | NotEqual | Formal | |
| Checks if target has a Sport outfit in any slot. | Target | OutfitCategory | Equal | Sport | All |
| Checks if target does not have a Sport outfit in any slot. | Target | OutfitCategory | NotEqual | Sport | All |