19 lines
583 B
Plaintext
19 lines
583 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName has_bl2
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 5/30/2004 4:20:32 PM
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if (GetItemPossessedBy(oPC, "bl_item1") == OBJECT_INVALID) return FALSE;
|
|
if (GetItemPossessedBy(oPC, "BL2") == OBJECT_INVALID) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|