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