9 lines
132 B
Plaintext
9 lines
132 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult = 0;
|
||
|
|
||
|
if(GetGold(GetPCSpeaker()) >= 100)
|
||
|
iResult = 1;
|
||
|
return iResult;
|
||
|
}
|