10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetName(GetPCSpeaker()) == GetLocalString(OBJECT_SELF,"Master"))
|
||
|
iResult = TRUE;
|
||
|
return iResult;
|
||
|
}
|