11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_NEUTRAL &&
|
|
GetAlignmentLawChaos(oPC) == ALIGNMENT_LAWFUL))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|