7 lines
190 B
Plaintext
7 lines
190 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if (GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL && GetHitDice(oPC) >= 5 && Random(10) == 0) return TRUE;
|
|
return FALSE;
|
|
}
|