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