17 lines
469 B
Plaintext
17 lines
469 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sha_isnotevil
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/9/2004 5:56:13 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) == ALIGNMENT_EVIL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|