34 lines
961 B
Plaintext
34 lines
961 B
Plaintext
/* Script generated by
|
|
Lilac Soul's NWN Script Generator, v. 1.3
|
|
|
|
For download info, please visit:
|
|
http://www.lilacsoul.revility.com */
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetItemPossessedBy(oPC, "KuralsHead") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuesterEnd") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest1Done") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest2done") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest3done") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest1") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest2") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest3") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "ShadQuest4") != OBJECT_INVALID) return FALSE;
|
|
|
|
if (!(GetHitDice(oPC) >= 7)) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|