17 lines
473 B
Plaintext
17 lines
473 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName gateevilcheck_sc
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: 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_EVIL)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|