10 lines
356 B
Plaintext
10 lines
356 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
int nAGE=GetAlignmentGoodEvil(oPC);
|
||
|
int nMaskAlignment=GetLocalInt(oPC,"nMaskAlignment");
|
||
|
if (nAGE==ALIGNMENT_EVIL&&nMaskAlignment!=TRUE) return TRUE;
|
||
|
if (nAGE==ALIGNMENT_NEUTRAL&&GetAlignmentLawChaos(oPC)!=ALIGNMENT_NEUTRAL&&nMaskAlignment!=TRUE) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|