23 lines
686 B
Plaintext
23 lines
686 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name(ASG) Test Script if this is Part of the Portalbe Lab
|
||
|
//:: FileName
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Donny Wilbanks
|
||
|
//:: Created On: 02/13/03
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult = FALSE;
|
||
|
object oOwner = GetLocalObject (OBJECT_SELF,"ASG_PORTALBLE");
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int iMaxList = GetLocalInt(OBJECT_SELF,"ASG_PORTALBLEARCANE_INDEX");
|
||
|
if (iMaxList>0 && oPC == oOwner) iResult = TRUE;
|
||
|
return iResult;
|
||
|
}
|