19 lines
540 B
Plaintext
19 lines
540 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_097
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/2/2005 1:59:26 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Restrict based on the player's alignment
|
||
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_EVIL)
|
||
|
return FALSE;
|
||
|
if(GetAlignmentLawChaos(GetPCSpeaker()) != ALIGNMENT_CHAOTIC)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|