19 lines
544 B
Plaintext
19 lines
544 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName charlmeliah
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 13/03/2005 18:50:54
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) == ALIGNMENT_GOOD)
|
|
return FALSE;
|
|
if(GetAlignmentLawChaos(GetPCSpeaker()) == ALIGNMENT_LAWFUL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|