2024-06-20 15:47:42 -04:00

17 lines
466 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_testgood
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 4/6/2003 3:35:50 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's alignment
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_GOOD)
return FALSE;
return TRUE;
}