HoS_PRC8/_mod/_module/nss/hench_same_align.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

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;
}