10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetLocalInt(GetPCSpeaker(),"IP1") == 1)
|
||
|
iResult = TRUE;
|
||
|
return iResult;
|
||
|
}
|