9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult = FALSE;
|
|
int Gold = GetGold(GetPCSpeaker());
|
|
if(Gold >= 36000000)
|
|
{ iResult = TRUE; }
|
|
return iResult;
|
|
}
|