14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetItemPossessedBy(oPC, "SCROLLOFTRUTH") == OBJECT_INVALID) return FALSE;
|
|
|
|
if (GetItemPossessedBy(oPC, "SCROLLOFKNOWLEDGE") == OBJECT_INVALID) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|