12 lines
145 B
Plaintext
12 lines
145 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetMaster(OBJECT_SELF) == GetPCSpeaker())
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|