16 lines
237 B
Plaintext
16 lines
237 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
int nInt;
|
|
nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYOZ_QUEST1");
|
|
|
|
if (!(nInt >= 2))
|
|
return FALSE;
|
|
FloatingTextStringOnCreature("Books fall tot he ground", oPC);
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
|