12 lines
140 B
Plaintext
12 lines
140 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetLocalInt(GetPCSpeaker(),"Fame")<50)
|
|
iResult=TRUE;
|
|
|
|
return iResult;
|
|
}
|