10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
int oHD = GetHitDice(GetPCSpeaker());
|
||
|
|
||
|
iResult = (GetGold(GetPCSpeaker())>= oHD * 200);
|
||
|
|
||
|
return iResult;
|
||
|
}
|