Initial commit. Added some art for loadscreens, fancymapped Bioware tileset overrides & the original Wizardry module as a starting point.
19 lines
546 B
Plaintext
19 lines
546 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_001
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 07/26/2002 10:22:01 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_NEUTRAL)
|
|
return FALSE;
|
|
if(GetAlignmentLawChaos(GetPCSpeaker()) == ALIGNMENT_CHAOTIC)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|