12 lines
194 B
Plaintext
12 lines
194 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetPCSpeaker();
|
|
|
|
iResult = FALSE;
|
|
if (GetHitDice(oPC)>6 && GetLevelByClass(CLASS_TYPE_WIZARD,oPC)>0)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|