19 lines
204 B
Plaintext
19 lines
204 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
object oPC=GetPCSpeaker();
|
||
|
|
||
|
int iResult;
|
||
|
|
||
|
if (GetGold(oPC)>=3000)
|
||
|
{
|
||
|
iResult = TRUE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
iResult = FALSE;
|
||
|
}
|
||
|
|
||
|
return iResult;
|
||
|
}
|