10 lines
132 B
Plaintext
10 lines
132 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetGold(GetPCSpeaker()) < 100)
|
|
iResult = TRUE;
|
|
return iResult;
|
|
}
|