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