20 lines
590 B
Plaintext
20 lines
590 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName has_bl_item2
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 5/29/2004 11:59:14 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if (GetItemPossessedBy(oPC, "bl_item2") == OBJECT_INVALID) return FALSE;
|
||
|
if (GetItemPossessedBy(oPC, "BL3") == OBJECT_INVALID) return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
|