17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Check if the PC's size is small, tiny, diminutive, or fine
|
||
|
int nSize = GetCreatureSize(oPC);
|
||
|
|
||
|
// Check if the size is small, tiny, diminutive, or fine
|
||
|
if (nSize == CREATURE_SIZE_SMALL || nSize == CREATURE_SIZE_TINY ||
|
||
|
nSize == 20 || nSize == 21)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
return FALSE;
|
||
|
}
|