14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult=FALSE;
|
||
|
object oPC=GetPCSpeaker();
|
||
|
int nGold=GetGold(oPC);
|
||
|
if (nGold>=2500)
|
||
|
{
|
||
|
iResult=TRUE;
|
||
|
}
|
||
|
|
||
|
|
||
|
return iResult;
|
||
|
}
|