Shargast_PRC8/_module/Chapter 1/nss/tk_chk_clsalgnrc.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

19 lines
549 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName tk_chk_clsalgnrc
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 14.05.2007 16:07:55
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's alignment
if(GetAlignmentGoodEvil(GetPCSpeaker()) == ALIGNMENT_GOOD)
return FALSE;
if(GetAlignmentLawChaos(GetPCSpeaker()) == ALIGNMENT_LAWFUL)
return FALSE;
return TRUE;
}