Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
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;
}