17 lines
469 B
Plaintext
17 lines
469 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_testnotgood
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 4/6/2003 3:36:38 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Restrict based on the player's alignment
|
||
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) == ALIGNMENT_GOOD)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|