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