17 lines
476 B
Plaintext
17 lines
476 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName gateneutralcheck
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/29/2002 11:08:59 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_NEUTRAL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|