10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
int StartingConditional()
|
|
{
|
|
int nPCAGE=GetAlignmentGoodEvil(GetPCSpeaker());
|
|
int nPCALC=GetAlignmentLawChaos(GetPCSpeaker());
|
|
int nHAGE=GetAlignmentGoodEvil(OBJECT_SELF);
|
|
int nHALC=GetAlignmentLawChaos(OBJECT_SELF);
|
|
if (nHALC==nPCALC&&nHAGE==nPCAGE) return TRUE;
|
|
return FALSE;
|
|
}
|