Condition_IsNPC
Description
Checks if the BaseObject is an NPC, defined as a character whose CharacterGroupType is not ResidenceFamily.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | Character to check for NPC status |
| CompareType | Supported compare types: Equal, None, NotEqual |
Examples
| Description | BaseObject | Command | CompareType |
|---|---|---|---|
| If Target is an NPC | Target | IsNpcCharacter | Equal |
| If Self is not an NPC | Self | IsNpcCharacter | NotEqual |
| If Self is an NPC | Self | IsNpcCharacter | Equal |
| If Target is not an NPC | Target | IsNpcCharacter | NotEqual |