10 lines
153 B
Plaintext
10 lines
153 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetHitDice(GetPCSpeaker()) > 5)
|
||
|
iResult = TRUE;
|
||
|
return iResult;
|
||
|
}
|