PWE_PRC8/_module/nss/sc_007.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

21 lines
561 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_007
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/15/2003 12:24:20 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Inspect local variables
if(!(GetLocalInt(GetPCSpeaker(), "diditalk") != 1))
return FALSE;
// Restrict based on the player's alignment
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_GOOD)
return FALSE;
return TRUE;
}