21 lines
561 B
Plaintext
21 lines
561 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_007
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/15/2003 12:24:20 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "diditalk") != 1))
|
|
return FALSE;
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_GOOD)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|