Shargast_PRC8/_module/Chapter 2/nss/tk_chk_clsalgnrc.nss

19 lines
549 B
Plaintext
Raw Normal View History

2024-08-03 14:13:18 -04:00
//::///////////////////////////////////////////////
//:: 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;
}