12 lines
145 B
Plaintext
12 lines
145 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
if(GetGold(GetPCSpeaker())<8000)
|
||
|
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return iResult;
|
||
|
}
|