22 lines
528 B
Plaintext
22 lines
528 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, "LEGIONGRAIL1") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "LEGIONGRAIL2") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "LEGIONGRAIL3") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "LEGIONGRAIL4") == OBJECT_INVALID) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|