RATDOG/_module/nss/sc_097.nss
Jaysyn904 0f13e6c538 Initial module commit
Initial module commit.
2021-08-29 23:34:48 -04:00

19 lines
540 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_097
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/2/2005 1:59:26 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's alignment
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_EVIL)
return FALSE;
if(GetAlignmentLawChaos(GetPCSpeaker()) != ALIGNMENT_CHAOTIC)
return FALSE;
return TRUE;
}