13 lines
215 B
Plaintext
13 lines
215 B
Plaintext
|
/*
|
||
|
Checks that there is a valid option for choice 0
|
||
|
*/
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
if(GetLocalString(oPC, "TOKEN104")=="")
|
||
|
return FALSE;
|
||
|
else
|
||
|
return TRUE;
|
||
|
}
|