EN6_PRC8/_module/nss/en6_bartender_c2.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

33 lines
475 B
Plaintext

int GetNumberOfHenchman(object oPC);
int StartingConditional()
{
int iResult;
int iIndex;
iResult = FALSE;
if (GetNumberOfHenchman(GetPCSpeaker()) >= 3)
iResult=TRUE;
return iResult;
}
int GetNumberOfHenchman(object oPC)
{
int iIndex;
int iCount;
object oHenchman;
iIndex=1;
iCount=0;
while (iIndex<11)
{
oHenchman=GetAssociate(ASSOCIATE_TYPE_HENCHMAN,oPC,iIndex);
if (GetIsObjectValid(oHenchman))
iCount++;
iIndex++;
}
return iCount;
}