9 lines
185 B
Plaintext
9 lines
185 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oT=GetLocalObject(oPC,"oTarget");
|
||
|
if (GetCreatureSize(oT)<=GetCreatureSize(oPC)) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|