11 lines
147 B
Plaintext
11 lines
147 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int amount = 500;
|
||
|
|
||
|
int iResult;
|
||
|
|
||
|
iResult = ( GetGold( GetPCSpeaker() ) >= amount );
|
||
|
return iResult;
|
||
|
}
|
||
|
|