HoS_PRC8/_mod/_module/nss/hench_same_align.nss

10 lines
303 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
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;
}