18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName has_bl_item3
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 5/29/2004 11:59:14 PM
|
|
//:://////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetItemPossessedBy(oPC, "bl_item3") == OBJECT_INVALID) return FALSE;
|
|
if (GetItemPossessedBy(oPC, "BL4") == OBJECT_INVALID) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|