12 lines
148 B
Plaintext
12 lines
148 B
Plaintext
int StartingConditional()
|
|
{
|
|
if(GetHitDice(GetPCSpeaker()) >= 5)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|