24 lines
631 B
Plaintext
24 lines
631 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name (B2) Auction Status
|
|
//:: FileName
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By:
|
|
//:: Created On:
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult=FALSE;
|
|
object oAuctioneer = GetNearestObjectByTag("DMrGAuctioneer");
|
|
if(GetIsObjectValid(oAuctioneer))
|
|
{
|
|
int vAStarted = GetLocalInt(oAuctioneer,"B2_AUCTIONSTATUS");
|
|
if (vAStarted == TRUE) iResult=TRUE;
|
|
}
|
|
return iResult;
|
|
}
|