9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oWP=GetLocalObject(oPC,"oSwimWP");
|
||
|
int nNumDest=GetLocalInt(oWP,"nNumDest");
|
||
|
if (nNumDest>0) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|