Condition_HasOutfitGarmentType
Description
Checks whether any currently worn outfit contains a garment of the specified GarmentType.
Parameters
| Parameter | Description |
|---|
| BaseObject | The character to check (Self or Target). |
| CompareType | Supported compare types: Equal, NotEqual. |
| S1 | GarmentType name to check (e.g. Top, Bottom, FullBody, Shoes). |
Examples
| Description | BaseObject | Command | CompareType | S1 |
|---|
| Checks if self is wearing any Top garment. | Self | HasOutfitGarmentType | Equal | Top |
| Checks if self is not wearing any FullBody garment. | Self | HasOutfitGarmentType | NotEqual | FullBody |
| Checks if target is wearing a Bottom garment. | Target | HasOutfitGarmentType | Equal | Bottom |
| Checks if self has no Shoes garment equipped. | Self | HasOutfitGarmentType | NotEqual | Shoes |