8 lines
197 B
Plaintext
8 lines
197 B
Plaintext
|
///show if left hand = undead
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if (GetCreatureBodyPart(CREATURE_PART_LEFT_HAND, GetPCSpeaker()) == CREATURE_MODEL_TYPE_UNDEAD) return TRUE;
|
||
|
else return FALSE;
|
||
|
}
|