17 lines
468 B
Plaintext
17 lines
468 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName chk_ali_good
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 13/3/2003 PM 8:35:14
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Restrict based on the player's alignment
|
||
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_GOOD)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|