20 lines
432 B
Plaintext
20 lines
432 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 (!(GetHitDice(oPC) < 30)) return FALSE;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "HouseofWuluPendant") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "HouseofWuluStatusAdept") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|