14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetItemPossessedBy(oPC, "SCROLLOFEVIL") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "SCROLLOFNEUTRAL") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "HOLYSERUM") == OBJECT_INVALID) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|