17 lines
477 B
Plaintext
17 lines
477 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName is_good
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 1/4/2004 2:44:14 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_GOOD)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|