9 lines
212 B
Plaintext
9 lines
212 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if (GetItemPossessedBy(oPC, "BL1") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|