Description
Checks whether the specified character currently has any buff matching the given BuffTag.
Returns true when CompareType is Equal and a tagged buff is present, or when CompareType is NotEqual
and no buff with that tag is present.
Parameters
| Parameter | Description |
|---|
| BaseObject | The character to check for tagged buffs (Self or Target) |
| CompareType | Equal: tagged buff must be present; NotEqual: must be absent |
| S1 | Buff tag to search for (e.g., BuffTag_Prison, BuffTag_Sleep) |
Examples
| Description | BaseObject | Command | CompareType | S1 |
|---|
| Check that self has a buff tagged BuffTag_Prison | Self | BuffTag | Equal | BuffTag_Prison |
| Check that target does NOT have BuffTag_Prison | Target | BuffTag | NotEqual | BuffTag_Prison |
| Check that self has a buff tagged BuffTag_Sleep | Self | BuffTag | Equal | BuffTag_Sleep |