9 lines
242 B
Plaintext
9 lines
242 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
if (GetLocalInt(oPC,"nGrubbinsQuest")!=1) return FALSE;
|
|
object oBook=GetItemPossessedBy(oPC,"it_grubbins");
|
|
if (!GetIsObjectValid(oBook)) return FALSE;
|
|
return TRUE;
|
|
}
|