16 lines
234 B
Plaintext
16 lines
234 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
int nInt;
|
||
|
nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYOZ_QUEST1");
|
||
|
|
||
|
if (!(nInt >= 3))
|
||
|
return FALSE;
|
||
|
FloatingTextStringOnCreature("Magical Books appear.", oPC);
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
|
||
|
|